diff --git a/docs/software/nrf52-TODO.md b/docs/software/nrf52-TODO.md index c9912bec1..65b360b6d 100644 --- a/docs/software/nrf52-TODO.md +++ b/docs/software/nrf52-TODO.md @@ -15,6 +15,7 @@ # Secondary work items +- currently using soft device SD140, is that ideal? - turn on security for BLE - make power management/sleep work properly - make a settimeofday implementation diff --git a/src/bare/NRF52Bluetooth.cpp b/src/bare/NRF52Bluetooth.cpp index 843a61173..ea88b82b8 100644 --- a/src/bare/NRF52Bluetooth.cpp +++ b/src/bare/NRF52Bluetooth.cpp @@ -160,19 +160,19 @@ void NRF52Bluetooth::setup() Bluefruit.Periph.setDisconnectCallback(disconnect_callback); // Configure and Start the Device Information Service - DEBUG_MSG("Configuring the Device Information Service"); + DEBUG_MSG("Configuring the Device Information Service\n"); bledis.setManufacturer("meshtastic.org"); bledis.setModel("NRF52-meshtastic"); bledis.begin(); // Start the BLE Battery Service and set it to 100% - DEBUG_MSG("Configuring the Battery Service"); + DEBUG_MSG("Configuring the Battery Service\n"); blebas.begin(); blebas.write(42); // FIXME, report real power levels // Setup the Heart Rate Monitor service using // BLEService and BLECharacteristic classes - DEBUG_MSG("Configuring the Heart Rate Monitor Service"); + DEBUG_MSG("Configuring the Heart Rate Monitor Service\n"); setupHRM(); // Setup the advertising packet(s)