mirror of
https://github.com/0xFEEDC0DE64/arduino-esp32.git
synced 2025-06-28 03:10:59 +02:00
add hook for bluetooth to Arduino INIT
This commit is contained in:
@ -109,11 +109,15 @@ void init() {}
|
||||
void initWiFi() __attribute__((weak));
|
||||
void initWiFi() {}
|
||||
|
||||
void initBT() __attribute__((weak));
|
||||
void initBT() {}
|
||||
|
||||
void initArduino(){
|
||||
nvs_flash_init();
|
||||
init();
|
||||
initVariant();
|
||||
initWiFi();
|
||||
initBT();
|
||||
}
|
||||
|
||||
//used by hal log
|
||||
|
Reference in New Issue
Block a user