123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178 |
- #include "ble_gatts_evt_conn.h"
- #include "ble_serialization.h"
- #include "ble_gatts_struct_serialization.h"
- #include "conn_ble_user_mem.h"
- #include "app_util.h"
- extern sercon_ble_user_mem_t m_conn_user_mem_table[];
- uint32_t ble_gatts_evt_rw_authorize_request_enc(ble_evt_t const * const p_event,
- uint32_t event_len,
- uint8_t * const p_buf,
- uint32_t * const p_buf_len)
- {
- SER_EVT_ENC_BEGIN(BLE_GATTS_EVT_RW_AUTHORIZE_REQUEST);
- SER_PUSH_uint16(&p_event->evt.gatts_evt.conn_handle);
- SER_PUSH_FIELD(&p_event->evt.gatts_evt.params.authorize_request, ble_gatts_evt_rw_authorize_request_t_enc);
- if ((p_event->evt.gatts_evt.params.authorize_request.type == BLE_GATTS_AUTHORIZE_TYPE_WRITE) &&
- ((p_event->evt.gatts_evt.params.authorize_request.request.write.op == BLE_GATTS_OP_EXEC_WRITE_REQ_NOW) ||
- (p_event->evt.gatts_evt.params.authorize_request.request.write.op == BLE_GATTS_OP_PREP_WRITE_REQ)))
- {
- uint32_t conn_index;
- if (conn_ble_user_mem_context_find(p_event->evt.gatts_evt.conn_handle, &conn_index) != NRF_ERROR_NOT_FOUND)
- {
- err_code = len16data_enc(m_conn_user_mem_table[conn_index].mem_block.p_mem, m_conn_user_mem_table[conn_index].mem_block.len, p_buf, *p_buf_len, &index);
- SER_ASSERT(err_code == NRF_SUCCESS, err_code);
- }
- }
- SER_EVT_ENC_END;
- }
- uint32_t ble_gatts_evt_hvc_enc(ble_evt_t const * const p_event,
- uint32_t event_len,
- uint8_t * const p_buf,
- uint32_t * const p_buf_len)
- {
- SER_EVT_ENC_BEGIN(BLE_GATTS_EVT_HVC);
- SER_PUSH_uint16(&p_event->evt.gatts_evt.conn_handle);
- SER_PUSH_FIELD(&p_event->evt.gatts_evt.params.hvc, ble_gatts_evt_hvc_t_enc);
- SER_EVT_ENC_END;
- }
- uint32_t ble_gatts_evt_sc_confirm_enc(ble_evt_t const * const p_event,
- uint32_t event_len,
- uint8_t * const p_buf,
- uint32_t * const p_buf_len)
- {
- SER_EVT_ENC_BEGIN(BLE_GATTS_EVT_SC_CONFIRM);
- SER_PUSH_uint16(&p_event->evt.gatts_evt.conn_handle);
- SER_EVT_ENC_END;
- }
- uint32_t ble_gatts_evt_sys_attr_missing_enc(ble_evt_t const * const p_event,
- uint32_t event_len,
- uint8_t * const p_buf,
- uint32_t * const p_buf_len)
- {
- SER_EVT_ENC_BEGIN(BLE_GATTS_EVT_SYS_ATTR_MISSING);
- SER_PUSH_uint16(&p_event->evt.gatts_evt.conn_handle);
- SER_PUSH_FIELD(&p_event->evt.gatts_evt.params.sys_attr_missing, ble_gatts_evt_sys_attr_missing_t_enc);
- SER_EVT_ENC_END;
- }
- uint32_t ble_gatts_evt_timeout_enc(ble_evt_t const * const p_event,
- uint32_t event_len,
- uint8_t * const p_buf,
- uint32_t * const p_buf_len)
- {
- SER_EVT_ENC_BEGIN(BLE_GATTS_EVT_TIMEOUT);
- SER_PUSH_uint16(&p_event->evt.gatts_evt.conn_handle);
- SER_PUSH_FIELD(&p_event->evt.gatts_evt.params.timeout, ble_gatts_evt_timeout_t_enc);
- SER_EVT_ENC_END;
- }
- uint32_t ble_gatts_evt_write_enc(ble_evt_t const * const p_event,
- uint32_t event_len,
- uint8_t * const p_buf,
- uint32_t * const p_buf_len)
- {
- SER_EVT_ENC_BEGIN(BLE_GATTS_EVT_WRITE);
- SER_PUSH_uint16(&p_event->evt.gatts_evt.conn_handle);
- SER_PUSH_FIELD(&p_event->evt.gatts_evt.params.write, ble_gatts_evt_write_t_enc);
- if ((p_event->evt.gatts_evt.params.write.op == BLE_GATTS_OP_WRITE_REQ) || (p_event->evt.gatts_evt.params.write.op == BLE_GATTS_OP_EXEC_WRITE_REQ_NOW))
- {
- uint32_t conn_index;
- if (conn_ble_user_mem_context_find(p_event->evt.gatts_evt.conn_handle, &conn_index) != NRF_ERROR_NOT_FOUND)
- {
- SER_PUSH_len16data(m_conn_user_mem_table[conn_index].mem_block.p_mem, m_conn_user_mem_table[conn_index].mem_block.len);
- }
- }
- SER_EVT_ENC_END;
- }
- uint32_t ble_gatts_evt_exchange_mtu_request_enc(ble_evt_t const * const p_event,
- uint32_t event_len,
- uint8_t * const p_buf,
- uint32_t * const p_buf_len)
- {
- SER_EVT_ENC_BEGIN(BLE_GATTS_EVT_EXCHANGE_MTU_REQUEST);
- SER_PUSH_uint16(&p_event->evt.gatts_evt.conn_handle);
- SER_PUSH_FIELD(&p_event->evt.gatts_evt.params.exchange_mtu_request, ble_gatts_evt_exchange_mtu_request_t_enc);
- SER_EVT_ENC_END;
- }
- #if NRF_SD_BLE_API_VERSION >= 4
- uint32_t ble_gatts_evt_hvn_tx_complete_enc(ble_evt_t const * const p_event,
- uint32_t event_len,
- uint8_t * const p_buf,
- uint32_t * const p_buf_len)
- {
- SER_EVT_ENC_BEGIN(BLE_GATTS_EVT_HVN_TX_COMPLETE);
- SER_PUSH_uint16(&p_event->evt.gatts_evt.conn_handle);
- SER_PUSH_uint8(&p_event->evt.gatts_evt.params.hvn_tx_complete.count);
- SER_EVT_ENC_END;
- }
- #endif
|