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

Porting BLE Serialization to STM32

Hi,

I would like to integrate BLE serialization with a nrf52832 and S132 soft device in a STM32 project.

I tried to identify which parts of the heart rate sensor example project are necessary for the application part and which are device specific, but I failed.

Is there any documentation about this I have overlooked or some kind of template project?

Thank you

Parents
  • I too am attempting to port a serialization example into an STM32F4 project with little success. Files in the IAR project nRF_Serialization group call into fds.c and fstorage.c which don't appear to be serialized, they reference on-chip SOC resources for flash storage.

  • Yeah, I ended up doing the same thing but with RAM based temporary storage since a) we don't actually care about pairing or bonding and b) we actually use an external flash for storage.

    There's honestly a slightly bigger problem than probing NRF52 registers which is that even though the rest of it is done through the selected backend, the FDS initialization sequence wants to touch physical pages directly. Doesn't work if you want to back the storage with something that's not memory mapped.

Reply
  • Yeah, I ended up doing the same thing but with RAM based temporary storage since a) we don't actually care about pairing or bonding and b) we actually use an external flash for storage.

    There's honestly a slightly bigger problem than probing NRF52 registers which is that even though the rest of it is done through the selected backend, the FDS initialization sequence wants to touch physical pages directly. Doesn't work if you want to back the storage with something that's not memory mapped.

Children
No Data
Related