Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
F
firmware
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
External wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Monitor
Service Desk
Analyze
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
card10
firmware
Commits
7331f59f
Commit
7331f59f
authored
4 years ago
by
schneider
Browse files
Options
Downloads
Patches
Plain Diff
chore(ble): epic api cleanup
parent
43bca5af
No related branches found
No related tags found
No related merge requests found
Pipeline
#5107
passed
4 years ago
Stage: build
Stage: test
Changes
1
Pipelines
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
epicardium/epicardium.h
+17
-20
17 additions, 20 deletions
epicardium/epicardium.h
with
17 additions
and
20 deletions
epicardium/epicardium.h
+
17
−
20
View file @
7331f59f
...
@@ -159,29 +159,27 @@ typedef _Bool bool;
...
@@ -159,29 +159,27 @@ typedef _Bool bool;
#define API_BLE_GET_SCAN_REPORT 0x144
#define API_BLE_GET_SCAN_REPORT 0x144
#define API_BLE_GET_LAST_PAIRING_NAME 0x145
#define API_BLE_GET_LAST_PAIRING_NAME 0x145
#define API_BLE_GET_PEER_DEVICE_NAME 0x146
#define API_BLE_GET_PEER_DEVICE_NAME 0x146
#define API_BLE_FREE_EVENT 0x147
#define API_BLE_HID_SEND_REPORT 0x150
#define API_BLE_HID_SEND_REPORT 0x150
#define API_BLE_ATTS_DYN_CREATE_GROUP 0x160
#define API_BLE_ATTS_DYN_CREATE_GROUP 0x160
//#define API_BLE_ATTS_DYN_DELETE_GROUP 0x161
#define API_BLE_ATTS_DYN_DELETE_GROUP 0x161
#define API_BLE_ATTS_DYN_REGISTER 0x162
#define API_BLE_ATTS_DYN_DELETE_GROUPS 0x169
#define API_BLE_ATTS_DYN_ADD_DESCRIPTOR 0x164
#define API_BLE_ATTS_DYN_ADD_CHARACTERISTIC 0x16B
#define API_BLE_ATTS_SET_ATTR 0x165
#define API_BLE_ATTS_DYN_ADD_DESCRIPTOR 0x163
#define API_BLE_ATTS_HANDLE_VALUE_NTF 0x166
#define API_BLE_ATTS_SET_BUFFER 0x16A
#define API_BLE_ATTS_HANDLE_VALUE_IND 0x167
#define API_BLE_ATTS_SEND_SERVICE_CHANGED_IND 0x168
#define API_BLE_ATTS_GET_ATTR 0x168
#define API_BLE_FREE_EVENT 0x169
#define API_BLE_ATTS_SET_ATTR 0x170
#define API_BLE_ATTS_SEND_SERVICE_CHANGED_IND 0x16A
#define API_BLE_ATTS_HANDLE_VALUE_NTF 0x171
#define API_BLE_ATTS_DYN_DELETE_GROUPS 0x16B
#define API_BLE_ATTS_HANDLE_VALUE_IND 0x172
#define API_BLE_ATTS_SET_BUFFER 0x1BC
#define API_BLE_GET_ATT_WRITE 0x1BD
#define API_BLE_CLOSE_CONNECTION 0x180
#define API_BLE_FREE_ATT_WRITE 0x1BE
#define API_BLE_IS_CONNECTION_OPEN 0x181
#define API_BLE_ATTS_DYN_ADD_CHARACTERISTIC 0x1BF
#define API_BLE_SET_DEVICE_NAME 0x182
#define API_BLE_CLOSE_CONNECTION 0x170
#define API_BLE_GET_DEVICE_NAME 0x183
#define API_BLE_IS_CONNECTION_OPEN 0x171
#define API_BLE_GET_ADDRESS 0x184
#define API_BLE_SET_DEVICE_NAME 0x172
#define API_BLE_GET_DEVICE_NAME 0x173
#define API_BLE_GET_ADDRESS 0x174
/* clang-format on */
/* clang-format on */
...
@@ -2603,7 +2601,6 @@ API(API_BLE_ATTS_DYN_ADD_CHARACTERISTIC, int epic_atts_dyn_add_characteristic(vo
...
@@ -2603,7 +2601,6 @@ API(API_BLE_ATTS_DYN_ADD_CHARACTERISTIC, int epic_atts_dyn_add_characteristic(vo
API
(
API_BLE_ATTS_SEND_SERVICE_CHANGED_IND
,
int
epic_atts_dyn_send_service_changed_ind
(
void
));
API
(
API_BLE_ATTS_SEND_SERVICE_CHANGED_IND
,
int
epic_atts_dyn_send_service_changed_ind
(
void
));
API
(
API_BLE_ATTS_SET_ATTR
,
int
epic_ble_atts_set_attr
(
uint16_t
handle
,
const
uint8_t
*
value
,
uint16_t
value_len
));
API
(
API_BLE_ATTS_SET_ATTR
,
int
epic_ble_atts_set_attr
(
uint16_t
handle
,
const
uint8_t
*
value
,
uint16_t
value_len
));
API
(
API_BLE_ATTS_GET_ATTR
,
uint8_t
AttsGetAttr
(
uint16_t
handle
,
uint16_t
*
pLen
,
uint8_t
**
pValue
));
API
(
API_BLE_ATTS_HANDLE_VALUE_NTF
,
int
epic_ble_atts_handle_value_ntf
(
uint8_t
connId
,
uint16_t
handle
,
uint16_t
valueLen
,
uint8_t
*
pValue
));
API
(
API_BLE_ATTS_HANDLE_VALUE_NTF
,
int
epic_ble_atts_handle_value_ntf
(
uint8_t
connId
,
uint16_t
handle
,
uint16_t
valueLen
,
uint8_t
*
pValue
));
API
(
API_BLE_ATTS_HANDLE_VALUE_IND
,
int
epic_ble_atts_handle_value_ind
(
uint8_t
connId
,
uint16_t
handle
,
uint16_t
valueLen
,
uint8_t
*
pValue
));
API
(
API_BLE_ATTS_HANDLE_VALUE_IND
,
int
epic_ble_atts_handle_value_ind
(
uint8_t
connId
,
uint16_t
handle
,
uint16_t
valueLen
,
uint8_t
*
pValue
));
API
(
API_BLE_ATTS_SET_BUFFER
,
int
epic_ble_atts_set_buffer
(
uint16_t
value_handle
,
size_t
len
,
bool
append
));
API
(
API_BLE_ATTS_SET_BUFFER
,
int
epic_ble_atts_set_buffer
(
uint16_t
value_handle
,
size_t
len
,
bool
append
));
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment