diff options
| author | Glenn Ruben Bakke <glennbakke@gmail.com> | 2017-06-05 21:13:32 +0200 |
|---|---|---|
| committer | Daniel Tralamazza <daniel@tralamazza.com> | 2017-06-07 19:44:08 +0200 |
| commit | fc26a2ef7cb9624703459c4212561e6e8d60635e (patch) | |
| tree | dbf5c29f94b11e5b5aae757cf8d86e2888d9dac1 | |
| parent | d53596145a8332296c0bac3988aeda221e59528e (diff) | |
nrf5/modules/ubluepy: Adding new event constant for gatts write (80) events from bluetooth stacks.
| -rw-r--r-- | nrf/modules/ubluepy/ubluepy_constants.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/nrf/modules/ubluepy/ubluepy_constants.c b/nrf/modules/ubluepy/ubluepy_constants.c index 5e12661e0..0f291d6a2 100644 --- a/nrf/modules/ubluepy/ubluepy_constants.c +++ b/nrf/modules/ubluepy/ubluepy_constants.c @@ -79,6 +79,7 @@ STATIC const mp_rom_map_elem_t ubluepy_constants_locals_dict_table[] = { // GAP events { MP_ROM_QSTR(MP_QSTR_EVT_GAP_CONNECTED), MP_ROM_INT(16) }, { MP_ROM_QSTR(MP_QSTR_EVT_GAP_DISCONNECTED), MP_ROM_INT(17) }, + { MP_ROM_QSTR(MP_QSTR_EVT_GATTS_WRITE), MP_ROM_INT(80) }, { MP_ROM_QSTR(MP_QSTR_UUID_CCCD), MP_ROM_INT(0x2902) }, { MP_ROM_QSTR(MP_QSTR_ADDR_TYPE_PUBLIC), MP_ROM_INT(UBLUEPY_ADDR_TYPE_PUBLIC) }, |
