Hello everyone.
I have been working on a project that involves DSP and BLE on nRF52832.
The firmware needs to sample an accelerometer signal every 1ms with high accuracy and having a total of 1024 samples. After the signal is sampled I perform a fft of the sampled signal. I would like to send the fft data series using a way like ble_app_uart example code.
I have tried the Timer interrupt, sampling process and ARM FFT without Softdevice, and they worked very well. When I tried to integrate this first code with ble_app_uart the code didn't work like before.
In this case, softdevice interruptions have a higher priority than the timer priority. I would like to know how to do a sampling with high precision and work with the softdevice.
Best Regards.