|
|
@ -61,7 +61,7 @@ namespace ExtUI { |
|
|
|
// into buff.
|
|
|
|
|
|
|
|
// Example:
|
|
|
|
// static_assert(sizeof(myDataStruct) <= ExtUI::eeprom_data_size);
|
|
|
|
// static_assert(sizeof(myDataStruct) <= eeprom_data_size);
|
|
|
|
// memcpy(buff, &myDataStruct, sizeof(myDataStruct));
|
|
|
|
} |
|
|
|
|
|
|
@ -71,7 +71,7 @@ namespace ExtUI { |
|
|
|
// from buff
|
|
|
|
|
|
|
|
// Example:
|
|
|
|
// static_assert(sizeof(myDataStruct) <= ExtUI::eeprom_data_size);
|
|
|
|
// static_assert(sizeof(myDataStruct) <= eeprom_data_size);
|
|
|
|
// memcpy(&myDataStruct, buff, sizeof(myDataStruct));
|
|
|
|
} |
|
|
|
|
|
|
@ -97,7 +97,7 @@ namespace ExtUI { |
|
|
|
// Called when any mesh points are updated
|
|
|
|
} |
|
|
|
|
|
|
|
void onMeshUpdate(const int8_t xpos, const int8_t ypos, const ExtUI::probe_state_t state) { |
|
|
|
void onMeshUpdate(const int8_t xpos, const int8_t ypos, const probe_state_t state) { |
|
|
|
// Called to indicate a special condition
|
|
|
|
} |
|
|
|
#endif |
|
|
|