Hello! Something strange is happening with my nrf51822.
I have a simple code to obtain data from the ADC and send it through BLE.
I do the following in the main loop:
1) capture adc data:
* Activate electronics (sensors)
nrf_gpio_pin_set (7);
* Data Capture
nrf_drv_adc_buffer_convert (adc_buffer, ADC_BUFFER_SIZE);
nrf_drv_adc_sample ();
* Disable electronics (sensors)
nrf_gpio_pin_clear (7);
2) send data
sprintf ((char *) data_UART, "TMP:% .2f C", temp_f);
ble_nus_string_send (& m_nus, data_UART, 12);
When I comment the lines to disable and enable the sensors everything is fine (sending obvious random data). But when i enable the pin, then capture the data and then disable the pin the system disconnects from BLE ...
Anyone know what could be happening?
Also the strangest thing that happens is the following:
This send some data:
nrf_gpio_pin_set(7);
read_ADC(lectura);
while(1){
send_data(lectura[0],lectura[1],lectura[2]);
}
but THIS SEND TOTALLY DIFFERENT DATA!!!
nrf_gpio_pin_set(7);
while(1){
read_ADC(lectura);
send_data(lectura[0],lectura[1],lectura[2]);
}
Thank you!
Regards!