-
Notifications
You must be signed in to change notification settings - Fork 3k
Ble remove user facing abstraction #13475
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
Merged
0xc0170
merged 43 commits into
ARMmbed:master
from
pan-:ble-remove-user-facing-abstraction
Sep 9, 2020
Merged
Changes from all commits
Commits
Show all changes
43 commits
Select commit
Hold shift + click to select a range
909676d
PIMPL for ble::Gap
pan- e3cf59e
ble: GattClient PIMPL
pan- 2b48d48
BLE: SecurityManager PIMPL
pan- cf3ede0
BLE: GattServer PIMPL
pan- 0929478
BLE: Move constructor from transport to private section
pan- c773870
BLE: Bind interface to private implementation.
pan- 41c8c22
BLE: Warning cleanup
pan- 381700a
BLE: Move generic implementation and headers into source/generic
pan- c2a09ab
BLE: Move SecurityDB related files into generic sources
pan- a453259
BLE: Move BleInstanceBase.h into source.
pan- e11bfb6
BLE: move PAL headers into source/pal
pan- d3427ca
BLE: Move gap public header at the root.
pan- 27cb038
BLE: Move common publi headers into ble/common
pan- 13c3587
BLE: Move GATT public header into ble/gatt
pan- 63ac8fa
BLE: Add compatibility path for headers.
pan- 94cf390
BLE: Fix address copy in Nordic HCI driver.
pan- 134cb88
BLE: Move cordio_stack out of TARGET_CORDIO
pan- cc78150
BLE: Move generic lib file into source/generic .
pan- dd54bae
BLE: Move Cordio implementation in source/impl
pan- 0baa92d
BLE: Expose HCI driver in public API.
pan- 7cbc0e3
BLE: Clang tidy on public headers.
pan- 241c69f
BLE: Cleanup public headers
pan- 12388d7
BLE: move source/impl into source/cordio
pan- 57b5f71
BLE: Move source/DiscoveredCharacteristic into source/gatt/Discovered…
pan- bc259c5
BLE: cleanup generic sources
pan- e59e1b5
BLE: Cleanup of pal AttClient and GattClient
pan- 3f3c11b
BLE: Move GattServer implementation from generic to cordio
pan- 2952a5b
BLE: Cleanup pal Gap
pan- 52b132e
BLE: Cleanup pal security manager
pan- b42abd0
BLE: cleanup PalEvent queue and implementation
pan- f6b40e0
BLE: Cleanup pal generic access service
pan- d914cb1
BLE: Cleanup PalSigningEventMonitor.
pan- 6df7846
BLE: Remove cordio namespace
pan- 2af0f88
BLE: Cleanup AttServerMessage implementation
pan- 029ed3a
BLE: Cleanup BLEInstanceBas implementation
pan- cf91053
BLE: Move cordio implementation include into source folder
pan- 053e81b
BLE: update doxygen exclusion pattern
pan- 5943a73
BLE: Fix uses of mbed.h
pan- 702c1b9
BLE: Fixed used of parent pointer in implementation classes.
pan- f116604
BLE: correctness improvments
pan- 4bd7f8c
BLE: fix code indentation
pan- 904b7f5
BLE: reintroduce default implementation GattClient::discoverServices.
pan- ea47ee0
Cypress BLE driver: Fix removal of mbed.h
pan- File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
I'm fine with this but I want to be on record being against an extra step of indirection, I don't believe making it look neater is worth the cost
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.
There are other options such as implementing things directly and using the private pointer for holding data but that was too much changes in one go. Private implementation makes us more robust regards to ABI changes and cleanly isolate from private headers which won't be accessible with the CMakeification.