ardupilot/libraries/DataFlash
Lucas De Marchi d2a259cef0 DataFlash: fix wrong printf format for printf
"%S" is used for wide string, but we are passing a char*. Use lowercase
in this case to remove warnings like this:

libraries/AP_InertialSensor/AP_InertialSensor.cpp: In member function
'bool AP_InertialSensor::calibrate_accel(AP_InertialSensor_UserInteract*, float&, float&)':
libraries/AP_InertialSensor/AP_InertialSensor.cpp:620:61: warning:
format '%S' expects argument of type 'wchar_t*', but argument 3 has type 'const char*' [-Wformat=]
                 "Place vehicle %S and press any key.\n", msg);
                                                             ^
2015-10-30 14:35:42 +09:00
..
examples/DataFlash_test Replace use of UARTDriver::printf_P() with UARTDriver::printf() 2015-10-30 14:35:25 +09:00
DFMessageWriter.cpp Replace prog_char and prog_char_t with char 2015-10-30 14:35:30 +09:00
DFMessageWriter.h Replace prog_char and prog_char_t with char 2015-10-30 14:35:30 +09:00
DataFlash.cpp DataFlash: delete oldest file rather than the lowest-numbered file 2015-10-21 10:50:32 +11:00
DataFlash.h Replace prog_char and prog_char_t with char 2015-10-30 14:35:30 +09:00
DataFlash_APM1.cpp Replace use of UARTDriver::printf_P() with UARTDriver::printf() 2015-10-30 14:35:25 +09:00
DataFlash_APM1.h DataFlash: DFMessageWriter; ability to trickle messages out to DF 2015-09-03 09:54:55 +10:00
DataFlash_APM2.cpp Remove use of PSTR 2015-10-30 14:35:04 +09:00
DataFlash_APM2.h DataFlash: DFMessageWriter; ability to trickle messages out to DF 2015-09-03 09:54:55 +10:00
DataFlash_Backend.cpp DataFlash: take log messages after putting FMTs out 2015-09-18 09:13:45 +10:00
DataFlash_Backend.h DataFlash: delete oldest file rather than the lowest-numbered file 2015-10-21 10:50:32 +11:00
DataFlash_Block.cpp DataFlash: ensure 10% free space when initialising logging 2015-09-09 12:22:35 +10:00
DataFlash_Block.h DataFlash: delete oldest file rather than the lowest-numbered file 2015-10-21 10:50:32 +11:00
DataFlash_Empty.cpp DataFlash: backend/frontend split 2015-06-26 16:02:50 +10:00
DataFlash_Empty.h DataFlash: standardize inclusion of libaries headers 2015-08-11 16:38:24 +10:00
DataFlash_File.cpp Replace use of UARTDriver::printf_P() with UARTDriver::printf() 2015-10-30 14:35:25 +09:00
DataFlash_File.h DataFlash: delete oldest file rather than the lowest-numbered file 2015-10-21 10:50:32 +11:00
DataFlash_SITL.cpp DataFlash: DFMessageWriter; ability to trickle messages out to DF 2015-09-03 09:54:55 +10:00
DataFlash_SITL.h DataFlash: standardize inclusion of libaries headers 2015-08-11 16:38:24 +10:00
LogFile.cpp DataFlash: fix wrong printf format for printf 2015-10-30 14:35:42 +09:00