mirror of https://github.com/ArduPilot/ardupilot
55 lines
1.3 KiB
C++
55 lines
1.3 KiB
C++
#include "Rover.h"
|
|
|
|
#if CLI_ENABLED == ENABLED
|
|
|
|
// Command/function table for the setup menu
|
|
static const struct Menu::command setup_menu_commands[] = {
|
|
// command function called
|
|
// ======= ===============
|
|
{"erase", MENU_FUNC(setup_erase)}
|
|
};
|
|
|
|
// Create the setup menu object.
|
|
MENU(setup_menu, "setup", setup_menu_commands);
|
|
|
|
// Called from the top-level menu to run the setup menu.
|
|
int8_t Rover::setup_mode(uint8_t argc, const Menu::arg *argv)
|
|
{
|
|
// Give the user some guidance
|
|
cliSerial->printf("Setup Mode\n"
|
|
"\n"
|
|
"IMPORTANT: if you have not previously set this system up, use the\n"
|
|
"'reset' command to initialize the EEPROM to sensible default values\n"
|
|
"and then the 'radio' command to configure for your radio.\n"
|
|
"\n");
|
|
|
|
// Run the setup menu. When the menu exits, we will return to the main menu.
|
|
setup_menu.run();
|
|
return 0;
|
|
}
|
|
|
|
int8_t Rover::setup_erase(uint8_t argc, const Menu::arg *argv)
|
|
{
|
|
int c;
|
|
|
|
cliSerial->printf("\nType 'Y' and hit Enter to erase all waypoint and parameter data, any other key to abort: ");
|
|
|
|
do {
|
|
c = cliSerial->read();
|
|
} while (-1 == c);
|
|
|
|
if (('y' != c) && ('Y' != c))
|
|
return(-1);
|
|
zero_eeprom();
|
|
return 0;
|
|
}
|
|
|
|
void Rover::zero_eeprom(void)
|
|
{
|
|
cliSerial->printf("\nErasing EEPROM\n");
|
|
StorageManager::erase();
|
|
cliSerial->println("done");
|
|
}
|
|
|
|
#endif // CLI_ENABLED
|