Hi,
I was wondering how I could somehow log data of device in the field to an SD card or the flash storage of the device or even over Bluetooth. Which of these options do you consider the most suitable.
I am using an nRF52832 chip and I am already using the UART for another peripheral so a UART SD logger is no option. Which of the following options do you think is best suited?
-
Use the NVM on the nRF53832 to write to (no backend support but littleFS ist supported? https://devzone.nordicsemi.com/f/nordic-q-a/78622/is-there-a-way-to-store-logs-in-nvs-flash-or-external-sd-card-from-a-device) (examples: https://github.com/NordicPlayground/nRF5-flash-storage-examples)
-
Use a raspi/beaglebone running an RTT application to and use debug headers with RTT
-
Use logging over BLE - which service should I use?
thank you for any tips