nrf5/modules: Adding ubluepy charactaristic type struct.

This commit is contained in:
Glenn Ruben Bakke 2017-02-11 14:19:08 +01:00
parent fad456d18f
commit 5f19113c94
1 changed files with 7 additions and 0 deletions

View File

@ -56,4 +56,11 @@ typedef struct _ubluepy_service_obj_t {
ubluepy_uuid_obj_t * p_uuid;
} ubluepy_service_obj_t;
typedef struct _ubluepy_characteristic_obj_t {
mp_obj_base_t base;
uint16_t handle;
ubluepy_uuid_obj_t * p_uuid;
} ubluepy_characteristic_obj_t;
#endif // UBLUEPY_H__