hi ,
I am working on the nRF52832 , I am trying to store the values in structure and then passing over BLE . I am getting this error after print statement unknown function of 0x00000A60
J-Link: Flash download: Bank 0 @ 0x00000000: 1 range affected (36864 bytes)
J-Link: Flash download: Total time needed: 0.858s (Prepare: 0.111s, Compare: 0.013s, Erase: 0.034s, Program: 0.638s, Verify: 0.001s, Restore: 0.060s)
Download successful
Stopped by vector catch
nrf_delay_ms(10000);
// Enter main loop.
for(;;)
{
int x_val=0;
char data[100];
char a[100];
for(int i=0;i<=100;i++)
{
s.accel[i]=x_val;
// x_val++;
sprintf(data,"%d",s.accel[i]);
length= strcat(a,data);
}
printf("%s",a);
ble_nus_data_send(&m_nus,a,&length,m_conn_handle);
nrf_delay_ms(10000);
idle_state_handle();
}
}