1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 |
- #ifndef ES_GATTS_READ_H__
- #define ES_GATTS_READ_H__
- #include <stdint.h>
- #include "nrf_ble_escs.h"
- ret_code_t es_gatts_read_send_not_permitted(nrf_ble_escs_t * p_escs);
- ret_code_t es_gatts_read_handle_unlocked_read(nrf_ble_escs_t * p_escs,
- uint16_t uuid,
- uint16_t val_handle,
- uint8_t active_slot);
- ret_code_t es_gatts_read_handle_unlock(nrf_ble_escs_t * p_escs);
- ret_code_t es_gatts_read_handle_locked_read(nrf_ble_escs_t * p_escs,
- uint16_t uuid);
- #endif
|