This post is older than 2 years and might not be relevant anymore
More Info: Consider searching for newer posts

fanstel BC832 - cant run any of the BLE examples

hello all,

I buy the Fanstel EV-BC832 V2 and start to paying with it.

I used the IAR ide and Embedded studio (SEGGER) ide for my tests.

First i check the blinky and uart and it's work, but every BLE example that i'm trying to run the code stuck in ble_stack_init();

Any help will be very appraised,

Best regards,

Yoav

Parents Reply Children
  • The 32.768 kHZ xtal is not required when running BLE examples, but a 32.768 kHz clock source is required. There is a internal 32.768 kHz RC oscillator integrated in the nRF52832 that can be used for this purpose. The clock source can be changed in the sdk_config.h file.

    The low frequency clock is used by the softdevice to wakeup at given intervals for handling BLE events. This si what gives you the low power usage when running BLE. The internal RC oscillator have lower accuracy (500 PPM), requiring the softdevice to schedule longer events to account for drift in the clock source, this gives slightly higher current consumption than the xtal and the choice between these two is given by your BOM cost vs. power consumption requirements.

Related