Hello,
we recently received our new custom PCBAs with nRF52833. this is the 2nd rev of our design and the first design functioned as expected. with this new board, I am able to program the device and run simple print hello world. when I loaded our developed FW where one of the first things we do is advertise, the app crashes with the following output:
and after running the addr2line, I get the following
the app seems to crash without much info as to what is causing it. I have a feeling it has something to do with the 32MHz crystal but this is the same crystal as our original design with the same load capacitance. one of the major differences with the new board design is we added the external 32kHz crystal but I have not even configured to use it. any help as to what may be causing this issue would be greatly appreciated.
here is the code
main.c
void main(void) { int err; //uint32_t pin_read = 0; // nRF52833 Revision 2 Errata // [246] System: Intermittent extra current consumption when going to sleep // Extra current consumption in the range of 350 µA when in System On Idle. // A high-speed peripheral (CPU for example) accesses a RAM block which is being accessed by // a low-speed peripheral through the DMA bus, with a specific timing, and the high-speed peripheral has // higher priority than the low-speed peripheral. // NOTE: Workaround consequences: Up to 40 µA current increase when the 16 MHz clock is used. *(volatile uint32_t *)0x4007AC84ul = 0x00000002ul; // Errata [20]. This anomaly applies to IC Rev. Revision 2, build codes QIAA-Bx0, QDAA-Bx0, CJAA-Bx0. // Symptoms is RTC registers will not contain the correct/expected value if read. // Consequences is RTC configuration cannot be determined by reading RTC registers. // NRF_CLOCK->EVENTS_LFCLKSTARTED = 0; NRF_CLOCK->TASKS_LFCLKSTART = 1; while (NRF_CLOCK->EVENTS_LFCLKSTARTED == 0) {} NRF_RTC0->TASKS_STOP = 0; static const nrfx_power_config_t pwr_config = { .dcdcen = true, }; err = nrfx_power_init(&pwr_config); if (err != NRFX_SUCCESS) { LOG_ERR("nrfx_power_init error: 0x%08X", err); return; } k_sem_init(&data_upload_ready, 0, 3); k_sem_init(&hall_data_fifo_ready, 1, 1); k_work_init(&acq_mode_info.work_item, acquisition_mode_update_work_handler); k_work_init(&m_hall_sensors_work.work_item, hall_sensors_work_handler); bt_ready(); start_advertisement(); while (1) { //k_sleep(K_SECONDS(1)); k_msleep(1500); LOG_INF("This is a test.................."); __WFE(); //UNUSED_RETURN_VALUE(NRF_LOG_PROCESS()); }
ble functions
nrfx_err_t start_advertisement(void) { nrfx_err_t err = NRFX_SUCCESS; if(bt_is_ready()) { // BT_LE_ADV_CONN_CUSTOM->interval_max = 0x0140; // BT_LE_ADV_CONN_CUSTOM->interval_min = 0x0140; LOG_INF("starting advertisement................"); err = bt_le_adv_start(BT_LE_ADV_CONN_CUSTOM_200m/*BT_LE_ADV_CONN*/, ad, ARRAY_SIZE(ad), sd, ARRAY_SIZE(sd)); if (err) { LOG_INF("Advertising failed to start (err %d)\n", err); return err; } LOG_INF("Advertising successfully started\n"); //bt_le_per_adv_start() } return err; } int bt_ready(void) { int err; awakens_callbacks.notif_changed = awakens_callbacks.notif_changed; awakens_callbacks.data_received = awakens_callbacks.data_received; err = bt_enable(NULL); if (err) { LOG_INF("Bluetooth init failed (err %d)", err); return err; } LOG_INF("Bluetooth initialized\n"); // err = bt_le_adv_start(BT_LE_ADV_CONN_CUSTOM/*BT_LE_ADV_CONN*/, ad, ARRAY_SIZE(ad), sd, ARRAY_SIZE(sd)); // if (err) { // LOG_INF("Advertising failed to start (err %d)\n", err); // return err; // } // LOG_INF("Advertising successfully started\n"); bt_conn_auth_cb_register(&auth_cb_display); return 0; }