Skip to content

Commit

Permalink
AP_Param: added get_eeprom_full()
Browse files Browse the repository at this point in the history
for arming check
  • Loading branch information
tridge authored and peterbarker committed Jun 18, 2024
1 parent b68af03 commit ae8ee53
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 0 deletions.
6 changes: 6 additions & 0 deletions libraries/AP_Param/AP_Param.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -112,6 +112,9 @@ uint16_t AP_Param::param_overrides_len;
uint16_t AP_Param::num_param_overrides;
uint16_t AP_Param::num_read_only;

// goes true if we run out of param space
bool AP_Param::eeprom_full;

ObjectBuffer_TS<AP_Param::param_save> AP_Param::save_queue{30};
bool AP_Param::registered_save_handler;

Expand Down Expand Up @@ -1192,6 +1195,8 @@ void AP_Param::save_sync(bool force_save, bool send_to_gcs)
return;
}
if (ofs == (uint16_t) ~0) {
eeprom_full = true;
DEV_PRINTF("EEPROM full\n");
return;
}

Expand Down Expand Up @@ -1224,6 +1229,7 @@ void AP_Param::save_sync(bool force_save, bool send_to_gcs)

if (ofs+type_size((enum ap_var_type)phdr.type)+2*sizeof(phdr) >= _storage.size()) {
// we are out of room for saving variables
eeprom_full = true;
DEV_PRINTF("EEPROM full\n");
return;
}
Expand Down
7 changes: 7 additions & 0 deletions libraries/AP_Param/AP_Param.h
Original file line number Diff line number Diff line change
Expand Up @@ -430,6 +430,11 @@ class AP_Param
///
static bool load_all();

// return true if eeprom is full, used for arming check
static bool get_eeprom_full(void) {
return eeprom_full;
}

// returns storage space used:
static uint16_t storage_used() { return sentinal_offset; }

Expand Down Expand Up @@ -865,6 +870,8 @@ class AP_Param
};
static defaults_list *default_list;
static void check_default(AP_Param *ap, float *default_value);

static bool eeprom_full;
};

namespace AP {
Expand Down

0 comments on commit ae8ee53

Please sign in to comment.