-
Notifications
You must be signed in to change notification settings - Fork 17
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add files from peer manager from nRF51 SDK 10.0.0 #15
Conversation
Add a subset of the files from the peer manager from nRF51 SDK 10.0.0. This code is required to implement whitelising in the ble-nrf51822 module.
NOTE: please try to build something before merging. NOTE: Some of the files I have included are just headers and I left out the actual implementation since we actually do not require this. Would you like me to include the implementation as well for completeness? |
source/nordic-sdk/components/ble/peer_manager/ble_gatt_db.h | ||
source/nordic-sdk/components/ble/peer_manager/ble_conn_state.h | ||
source/nordic-sdk/components/ble/peer_manager/sdk_mapped_flags.h | ||
source/nordic-sdk/components/ble/peer_manager/peer_database.h |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The indentation is different, can you fix it please.
Apart from the indentation, I'm happy with this. Tested ble heartrate example, it compiles fine. +1 |
@LiyouZhou I will fix the indentation and also include some extra files such as the actual implementation of the headers I already added. Even though it is not required, I think it would be good to include the implementation for completeness. |
I'm fine with this PR, I will merge it when the indentation is fixed. |
@pan- @LiyouZhou Fixed indentation. Just a note, that file is completely written using tabs rather than spaces, we should change that... |
Add files from peer manager from nRF51 SDK 10.0.0
Add a subset of the files from the peer manager from nRF51 SDK 10.0.0. This
code is required to implement whitelising in the ble-nrf51822 module.
@pan- @LiyouZhou