ardupilot/libraries/DataFlash
Lucas De Marchi 831d8acca5 Remove use of PROGMEM
Now variables don't have to be declared with PROGMEM anymore, so remove
them. This was automated with:

    git grep -l -z PROGMEM | xargs -0 sed -i 's/ PROGMEM / /g'
    git grep -l -z PROGMEM | xargs -0 sed -i 's/PROGMEM//g'

The 2 commands were done so we don't leave behind spurious spaces.

AVR-specific places were not changed.
2015-10-30 14:35:16 +09:00
..
examples/DataFlash_test Remove use of PROGMEM 2015-10-30 14:35:16 +09:00
DataFlash_APM1.cpp Remove use of PSTR 2015-10-30 14:35:04 +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 Remove use of PSTR 2015-10-30 14:35:04 +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
DataFlash.cpp DataFlash: delete oldest file rather than the lowest-numbered file 2015-10-21 10:50:32 +11:00
DataFlash.h DataFlash: Fix shorthand variable names for EKF position reset delta 2015-10-30 12:24:18 +09:00
DFMessageWriter.cpp Remove use of PSTR 2015-10-30 14:35:04 +09:00
DFMessageWriter.h DataFlash: take log messages after putting FMTs out 2015-09-18 09:13:45 +10:00
LogFile.cpp Replace use of strcpy_P() with strcpy() 2015-10-30 14:35:12 +09:00