uncrustify libraries/AP_Common/examples/menu/menu.pde

This commit is contained in:
uncrustify 2012-08-16 23:18:11 -07:00 committed by Pat Hickey
parent 42e24a869f
commit ca476e5851
1 changed files with 2 additions and 2 deletions

View File

@ -7,7 +7,7 @@ FastSerialPort0(Serial);
int8_t
menu_test(uint8_t argc, const Menu::arg *argv)
{
int i;
int i;
Serial.printf("This is a test with %d arguments\n", argc);
for (i = 1; i < argc; i++) {
@ -24,7 +24,7 @@ menu_auto(uint8_t argc, const Menu::arg *argv)
const struct Menu::command top_menu_commands[] PROGMEM = {
{"*", menu_auto},
{"test", menu_test},
{"test", menu_test},
};
MENU(top, "menu", top_menu_commands);