saramonteiro commented on a change in pull request #4509: URL: https://github.com/apache/incubator-nuttx/pull/4509#discussion_r716994102
########## File path: boards/xtensa/esp32/esp32-devkitc/src/esp32_bringup.c ########## @@ -207,6 +211,15 @@ int esp32_bringup(void) } #endif +#ifdef CONFIG_ESP32_BLE + ret = esp32_ble_initialize(); + if (ret) + { + syslog(LOG_ERR, "ERROR: Failed to initialize BLE\n"); + return ret; Review comment: ```suggestion ``` Rmv it since we decided not to break the initialization if one fails -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: commits-unsubscr...@nuttx.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org