Rename bootComplete() to onBootComplete() for naming consistency

Matches the existing event-style lifecycle hooks on MainBoard
(onBeforeTransmit, onAfterTransmit) per @liamcottle's review feedback.
이 커밋은 다음에 포함됨:
AtlavoxDev
2026-05-25 09:50:28 -04:00
부모 39a69b86c3
커밋 e5dab6b999
5개의 변경된 파일5개의 추가작업 그리고 5개의 파일을 삭제
+1 -1
파일 보기
@@ -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() {
+1 -1
파일 보기
@@ -120,7 +120,7 @@ void setup() {
modem->setGetStatsCallback(onGetStats);
modem->begin();
board.bootComplete();
board.onBootComplete();
}
void loop() {
+1 -1
파일 보기
@@ -104,7 +104,7 @@ void setup() {
the_mesh.sendSelfAdvertisement(16000, false);
#endif
board.bootComplete();
board.onBootComplete();
}
void loop() {
+1 -1
파일 보기
@@ -81,7 +81,7 @@ void setup() {
the_mesh.sendSelfAdvertisement(16000, false);
#endif
board.bootComplete();
board.onBootComplete();
}
void loop() {