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

Serialization app porting

I'm trying to port SDK 9 serialization library to Qt. My starting point is ble_app_multilink_central_s120_uart_pca10028 project in Keil.

All nrf projects uses softdevice_handler.c and .h files. How to port these files? They depend on nrf51 specific headers which are, of course, no available on Qt platform (like nrf51.h).

I read Porting serialization libraries chapter in SDK 9 documentation, but there is not mentioned how to port it. Am I expected to implement sotdevice_handler.c myself?

Parents
  • Which "project" are you referring to? You will have two projects:

    • Your "application" project on your application processor;

    • The "connectivity" application (including the SoftDevice, etc) running on the Nordic chip.

    The only part which requires porting is the comms part on the application processor (to enable it to talk to the "Connectivity" chip)

Reply
  • Which "project" are you referring to? You will have two projects:

    • Your "application" project on your application processor;

    • The "connectivity" application (including the SoftDevice, etc) running on the Nordic chip.

    The only part which requires porting is the comms part on the application processor (to enable it to talk to the "Connectivity" chip)

Children
No Data
Related