CNCBASHER / ardupilot-mega

Automatically exported from code.google.com/p/ardupilot-mega
0 stars 0 forks source link

Ability to write waypoint information to EEPROM #155

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
Feature that you'd like us to add or change you'd like us to make:
Although no GCS currently publicly available takes advantage of it, it would be 
nice to have the companion function to write general waypoint information back 
into EEPROM.  This is my version of the function that my GCS uses to update 
wp_total in EEPROM:

void save_EEPROM_waypoint_info(void)
{
    eeprom_write_byte((uint8_t *)   EE_WP_TOTAL, wp_total);
    eeprom_write_byte((uint8_t *)   EE_WP_RADIUS, wp_radius);
    eeprom_write_byte((uint8_t *)   EE_LOITER_RADIUS, loiter_radius);
}

This is probably a lower priority.

Original issue reported on code.google.com by bjpcalt...@gmail.com on 29 Sep 2010 at 11:15

GoogleCodeExporter commented 9 years ago

Original comment by dewei...@gmail.com on 29 Sep 2010 at 11:54

GoogleCodeExporter commented 9 years ago
thanks!

Original comment by jasonshort on 30 Sep 2010 at 12:25