🎨 Nextion cleanup

This commit is contained in:
Scott Lahteine 2022-05-04 15:14:31 -05:00
parent f9b7f00d1e
commit dcd769b4a1

View File

@ -61,7 +61,7 @@ namespace ExtUI {
// into buff. // into buff.
// Example: // Example:
// static_assert(sizeof(myDataStruct) <= ExtUI::eeprom_data_size); // static_assert(sizeof(myDataStruct) <= eeprom_data_size);
// memcpy(buff, &myDataStruct, sizeof(myDataStruct)); // memcpy(buff, &myDataStruct, sizeof(myDataStruct));
} }
@ -71,7 +71,7 @@ namespace ExtUI {
// from buff // from buff
// Example: // Example:
// static_assert(sizeof(myDataStruct) <= ExtUI::eeprom_data_size); // static_assert(sizeof(myDataStruct) <= eeprom_data_size);
// memcpy(&myDataStruct, buff, sizeof(myDataStruct)); // memcpy(&myDataStruct, buff, sizeof(myDataStruct));
} }
@ -97,7 +97,7 @@ namespace ExtUI {
// Called when any mesh points are updated // 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 // Called to indicate a special condition
} }
#endif #endif