add hook for bluetooth to Arduino INIT

This commit is contained in:
me-no-dev 2017-02-14 04:12:11 +02:00
parent 43cc3dc815
commit 9bd5de11a7

View File

@ -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