ArduCopter Logging: DISABLED means DISABLED again; CONFIG_LOGGING added
CONFIG_LOGGING selects LOGGING_SIMPLE and LOGGING_VERBOSE. Verbose
logging is the default, implemented in Log.pde. Simple logging is
optional, but the default for the 1280 build, implemented in
Log_simple.pde
// Code to Write and Read packets from DataFlash log memory
// Code to interact with the user to dump or erase logs
@ -1119,3 +1119,29 @@ static int Log_Read_Process(int start_page, int end_page)
@@ -1119,3 +1119,29 @@ static int Log_Read_Process(int start_page, int end_page)
}
#endif // LOGGING_ENABLED
#if LOGGING_ENABLED == DISABLED
static void Log_Write_Startup() {}
static void Log_Read_Startup() {}
static void Log_Read(int start_page, int end_page) {}