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

Software development from scratch?

I been reading over your entire tutorials, but I have yet to see any tutorials that guides me towards creating an NRF52 project from scratch? Could anyone guide me through this process?

I am using keil uvision5 but I am open to switch to any other IDEs if it simplifies the process

Thank you

Parents Reply
  • Generally, you can mix and match from examples. The only typical issue in that case is that if you add more services, you may run out of RAM for the GATT table. In that case you will get NRF_ERROR_NO_MEM  returned when adding the characteristic that cannot fit. To remedy this, increase the NRF_SDH_BLE_GATTS_ATTR_TAB_SIZE in the sdk_config.h and adjust the application RAM start address and size accordingly, as the SoftDevice will use more RAM to fit the larger GATT table.

Children
No Data
Related