8000 add hook for bluetooth to Arduino INIT · rkyymmt/arduino-esp32@9bd5de1 · GitHub
[go: up one dir, main page]

Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 9bd5de1

Browse files
committed
add hook for bluetooth to Arduino INIT
1 parent 43cc3dc commit 9bd5de1

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

cores/esp32/esp32-hal-misc.c

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -109,11 +109,15 @@ void init() {}
109109
void initWiFi() __attribute__((weak));
110110
void initWiFi() {}
111111

112+
void initBT() __attribute__((weak));
113+
void initBT() {}
114+
112115
void initArduino(){
113116
nvs_flash_init();
114117
init();
115118
initVariant();
116119
initWiFi();
120+
initBT();
117121
}
118122

119123
//used by hal log

0 commit comments

Comments
 (0)
0