mirror of
https://github.com/MarekZegare4/MeshCore-Solo.git
synced 2026-07-31 17:26:12 +00:00
Rename bootComplete() to onBootComplete() for naming consistency
Matches the existing event-style lifecycle hooks on MainBoard (onBeforeTransmit, onAfterTransmit) per @liamcottle's review feedback.
This commit is contained in:
@@ -239,7 +239,7 @@ void setup() {
|
||||
ui_task.begin(disp, &sensors, the_mesh.getNodePrefs()); // still want to pass this in as dependency, as prefs might be moved
|
||||
#endif
|
||||
|
||||
board.bootComplete();
|
||||
board.onBootComplete();
|
||||
}
|
||||
|
||||
void loop() {
|
||||
|
||||
@@ -120,7 +120,7 @@ void setup() {
|
||||
modem->setGetStatsCallback(onGetStats);
|
||||
modem->begin();
|
||||
|
||||
board.bootComplete();
|
||||
board.onBootComplete();
|
||||
}
|
||||
|
||||
void loop() {
|
||||
|
||||
@@ -104,7 +104,7 @@ void setup() {
|
||||
the_mesh.sendSelfAdvertisement(16000, false);
|
||||
#endif
|
||||
|
||||
board.bootComplete();
|
||||
board.onBootComplete();
|
||||
}
|
||||
|
||||
void loop() {
|
||||
|
||||
@@ -81,7 +81,7 @@ void setup() {
|
||||
the_mesh.sendSelfAdvertisement(16000, false);
|
||||
#endif
|
||||
|
||||
board.bootComplete();
|
||||
board.onBootComplete();
|
||||
}
|
||||
|
||||
void loop() {
|
||||
|
||||
Reference in New Issue
Block a user