reformat source in uvosstyle

This commit is contained in:
2023-10-12 14:56:11 +02:00
parent 9f8b9059f9
commit afeaa9f5a7
7 changed files with 341 additions and 340 deletions

View File

@ -185,18 +185,17 @@ void reciverError(uint8_t code, void* userData)
inline static void printHelp(Serial* serial)
{
serial->write_p(PSTR("Available Commands: \n"
"help : Show this prompt.\n"
"date : Show current date and time.\n"
"set [yyyy] [mm] [dd] [hh] [mm] [ss] : Show current date and time.\n"
"pause : pause sensor output.\n"
"resume : resume sensor output.\n"
"dump : Dump epprom.\n"
"free : Show free ram.\n"
"beep : Test buzzer.\n"
"list : List sensors.\n"));
"help : Show this prompt.\n"
"date : Show current date and time.\n"
"set [yyyy] [mm] [dd] [hh] [mm] [ss] : Show current date and time.\n"
"pause : pause sensor output.\n"
"resume : resume sensor output.\n"
"dump : Dump epprom.\n"
"free : Show free ram.\n"
"beep : Test buzzer.\n"
"list : List sensors.\n"));
}
int freeRAM()
{
extern int __heap_start, *__brkval;
@ -502,4 +501,3 @@ int main()
return 0;
}