Browse Source

AP_Param: enable param debug by default

mission-4.1.18
Andrew Tridgell 9 years ago
parent
commit
57f580fdfc
  1. 6
      libraries/AP_Param/AP_Param.cpp

6
libraries/AP_Param/AP_Param.cpp

@ -35,7 +35,7 @@
extern const AP_HAL::HAL &hal; extern const AP_HAL::HAL &hal;
#define ENABLE_DEBUG 0 #define ENABLE_DEBUG 1
#if ENABLE_DEBUG #if ENABLE_DEBUG
# define Debug(fmt, args ...) do {hal.console->printf("%s:%d: " fmt "\n", __FUNCTION__, __LINE__, ## args); } while(0) # define Debug(fmt, args ...) do {hal.console->printf("%s:%d: " fmt "\n", __FUNCTION__, __LINE__, ## args); } while(0)
@ -99,8 +99,6 @@ void AP_Param::erase_all(void)
{ {
struct EEPROM_header hdr; struct EEPROM_header hdr;
Debug("erase_all");
// write the header // write the header
hdr.magic[0] = k_EEPROM_magic0; hdr.magic[0] = k_EEPROM_magic0;
hdr.magic[1] = k_EEPROM_magic1; hdr.magic[1] = k_EEPROM_magic1;
@ -218,8 +216,6 @@ bool AP_Param::setup(void)
{ {
struct EEPROM_header hdr; struct EEPROM_header hdr;
Debug("setup %u vars", (unsigned)_num_vars);
// check the header // check the header
_storage.read_block(&hdr, 0, sizeof(hdr)); _storage.read_block(&hdr, 0, sizeof(hdr));
if (hdr.magic[0] != k_EEPROM_magic0 || if (hdr.magic[0] != k_EEPROM_magic0 ||

Loading…
Cancel
Save