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

No matching pca to use with my nRF52833 DK (which has a PCA10100)

Hello, I'm getting started with my nRF52833 DK, and downloaded SDK 16.0, and it looks like in the examples the project types for, say, ble_app_hrs they have these options

* pca10040

* pca10040e

* pca10056

* pca10056e

* pca10059

My DK looks like it has a PCA10100, which isn't an option?  Should I use one of these existing ones?  What's the downside? Or am I on the wrong path somehow?

Thanks.

Update: I guess the pca10056 has a subfolder that matches my softdevice (s140), so I'll try with that one... but not confident about this...

  • In general, you can use the PCA10040 examples and convert them to PCA10100 examples as follows:

    • 1) Change the board config to PCA10100
    • 2) Change the board definition in preprocessor definitions.
    • 3) Adjust RAM and Flash memory sizes.

     In addition, the following pca10100 example projects are provided in SDK 16.

    • ble_peripheral
      • ble_app_uart
      • ble_app_hids_keyboard
      • ble_app_hrs_nfc_pairing
      • peripheral
        uart
      • saadc
      • radio_test
      • blinky rtc_freertis
      • blinky_rtos
      • writable_ndef_msg
      • wake_on_nfc
      • record_url
      • usbd_hid_generic
      • usbd_ble_uart
      • usbd
    • proprietary
      • esb_ptx
      • esb_prx
      • esb_low_power_ptx
      • esb_low_power_prx
    • dtm
      • direct_test_mode
    • bootloader
      • secure_bootloader(s140, both debug and release variants)
      • secure_bootloader(s113, both debug and release variants)
Related