summaryrefslogtreecommitdiff
path: root/net/nimble/host/src/test/ble_gatt_find_s_test.c
AgeCommit message (Collapse)Author
2016-07-22BLE Host - Use mbufs instead of flat bufs.Christopher Collins
2016-07-11BLE Host - Indicate GATT proc done - BLE_HS_EDONEChristopher Collins
2016-07-11BLE Host - GATT client cb: error arg never null.Christopher Collins
Prior to this change, the GATT client indicated success by passing a null error argument to the application callback. This made it unnecessarily difficult for application code, because it would always have to check error for null before looking at its status field. Now, the error argument is never null. Success is indicated by setting error->status = 0.
2016-07-11BLE Host - Const correctness.Christopher Collins
2016-06-06BLE Host - Fix inconsistent GATT identifier names.Christopher Collins
2016-05-13BLE Host - Enforce thread safety in unit tests.Christopher Collins
2016-05-11BLE Host unit tests - queue of previous data txes.Christopher Collins
2016-04-04ble host: reduce code size.Christopher Collins
* Use packed structs for over-the-air ATT and L2CAP commands. * Compile-out ~90% of asserts except when BLE_HS_DEBUG is defined.
2016-02-17BLE host: Include all priv hdrs from ble_hs_priv.hChristopher Collins
2016-02-06replace license headers with ASF license. first pass.Sterling Hughes
2016-01-14Add GAP callback per-connection, rather than single global.Christopher Collins
2016-01-11Modify GATT API s.t. errors include att handle.Christopher Collins
2016-01-07Fix up some missing tx calls in unit tests.Christopher Collins
2016-01-07Find Included Services GATT procedure.Christopher Collins