2016-11-16 15:38:25 -05:00
|
|
|
/*
|
2017-08-04 12:05:38 -04:00
|
|
|
* This file is part of the MicroPython project, http://micropython.org/
|
2016-11-16 15:38:25 -05:00
|
|
|
*
|
|
|
|
* The MIT License (MIT)
|
|
|
|
*
|
|
|
|
* Copyright (c) 2016 Glenn Ruben Bakke
|
|
|
|
*
|
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
* of this software and associated documentation files (the "Software"), to deal
|
|
|
|
* in the Software without restriction, including without limitation the rights
|
|
|
|
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
* copies of the Software, and to permit persons to whom the Software is
|
|
|
|
* furnished to do so, subject to the following conditions:
|
|
|
|
*
|
|
|
|
* The above copyright notice and this permission notice shall be included in
|
|
|
|
* all copies or substantial portions of the Software.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
|
|
* THE SOFTWARE.
|
|
|
|
*/
|
|
|
|
|
2017-02-10 15:09:03 -05:00
|
|
|
#ifndef BLUETOOTH_LE_DRIVER_H__
|
|
|
|
#define BLUETOOTH_LE_DRIVER_H__
|
|
|
|
|
2017-05-11 12:37:48 -04:00
|
|
|
#if BLUETOOTH_SD
|
|
|
|
|
2018-07-19 17:51:34 -04:00
|
|
|
#include "shared-bindings/bleio/Device.h"
|
|
|
|
#include "shared-bindings/bleio/Scanner.h"
|
|
|
|
#include "shared-bindings/bleio/Service.h"
|
2018-07-19 14:59:32 -04:00
|
|
|
#include "shared-module/bleio/ScanEntry.h"
|
2018-07-18 04:22:11 -04:00
|
|
|
|
2018-07-19 14:33:24 -04:00
|
|
|
typedef void (*ble_drv_gap_evt_callback_t)(bleio_device_obj_t *device, uint16_t event_id, uint16_t conn_handle, uint16_t length, uint8_t * data);
|
|
|
|
typedef void (*ble_drv_gatts_evt_callback_t)(bleio_device_obj_t *device, uint16_t event_id, uint16_t attr_handle, uint16_t length, uint8_t * data);
|
2018-07-19 14:59:32 -04:00
|
|
|
typedef void (*ble_drv_adv_evt_callback_t)(bleio_scanner_obj_t *scanner, bleio_scanentry_obj_t *entry);
|
2017-03-14 03:13:32 -04:00
|
|
|
|
2017-02-17 13:02:24 -05:00
|
|
|
uint32_t ble_drv_stack_enable(void);
|
2016-11-16 15:38:25 -05:00
|
|
|
|
2017-02-17 13:02:24 -05:00
|
|
|
uint8_t ble_drv_stack_enabled(void);
|
2016-11-16 15:38:25 -05:00
|
|
|
|
2018-07-19 14:40:33 -04:00
|
|
|
void ble_drv_address_get(bleio_address_obj_t *address);
|
2016-11-16 15:38:25 -05:00
|
|
|
|
2017-02-17 13:02:24 -05:00
|
|
|
bool ble_drv_uuid_add_vs(uint8_t * p_uuid, uint8_t * idx);
|
2017-02-10 15:09:03 -05:00
|
|
|
|
2018-07-18 19:01:41 -04:00
|
|
|
void ble_drv_service_add(bleio_service_obj_t *service);
|
2017-02-10 15:09:03 -05:00
|
|
|
|
2018-07-18 17:47:06 -04:00
|
|
|
bool ble_drv_characteristic_add(bleio_characteristic_obj_t *characteristic);
|
2017-02-11 10:01:50 -05:00
|
|
|
|
2018-07-19 14:33:24 -04:00
|
|
|
bool ble_drv_advertise_data(bleio_advertisement_data_t *p_adv_params);
|
2017-02-15 17:32:42 -05:00
|
|
|
|
2017-04-04 15:22:49 -04:00
|
|
|
void ble_drv_advertise_stop(void);
|
|
|
|
|
2018-07-19 14:33:24 -04:00
|
|
|
void ble_drv_gap_event_handler_set(bleio_device_obj_t *device, ble_drv_gap_evt_callback_t evt_handler);
|
2017-02-15 17:32:42 -05:00
|
|
|
|
2018-07-19 14:33:24 -04:00
|
|
|
void ble_drv_gatts_event_handler_set(bleio_device_obj_t *device, ble_drv_gatts_evt_callback_t evt_handler);
|
2017-02-18 18:08:05 -05:00
|
|
|
|
2017-03-30 17:38:01 -04:00
|
|
|
void ble_drv_attr_s_read(uint16_t conn_handle, uint16_t handle, uint16_t len, uint8_t * p_data);
|
|
|
|
|
2018-07-19 17:51:34 -04:00
|
|
|
void ble_drv_attr_c_read(bleio_characteristic_obj_t *characteristic);
|
2017-02-18 15:11:39 -05:00
|
|
|
|
2018-07-18 17:47:06 -04:00
|
|
|
void ble_drv_attr_s_write(bleio_characteristic_obj_t *characteristic, mp_buffer_info_t *bufinfo);
|
2017-02-18 15:11:39 -05:00
|
|
|
|
2018-07-18 17:47:06 -04:00
|
|
|
void ble_drv_attr_s_notify(bleio_characteristic_obj_t *characteristic, mp_buffer_info_t *bufinfo);
|
2017-02-18 15:11:39 -05:00
|
|
|
|
2018-07-18 17:47:06 -04:00
|
|
|
void ble_drv_attr_c_write(bleio_characteristic_obj_t *characteristic, mp_buffer_info_t *bufinfo);
|
2017-05-14 13:00:22 -04:00
|
|
|
|
2018-07-18 04:22:11 -04:00
|
|
|
void ble_drv_scan_start(uint16_t interval, uint16_t window);
|
2017-03-12 14:50:38 -04:00
|
|
|
|
2018-07-17 11:00:37 -04:00
|
|
|
void ble_drv_scan_continue(void);
|
|
|
|
|
2017-03-12 14:50:38 -04:00
|
|
|
void ble_drv_scan_stop(void);
|
|
|
|
|
2018-07-18 04:22:11 -04:00
|
|
|
void ble_drv_adv_report_handler_set(bleio_scanner_obj_t *self, ble_drv_adv_evt_callback_t evt_handler);
|
2017-03-14 02:59:29 -04:00
|
|
|
|
2018-07-19 14:33:24 -04:00
|
|
|
void ble_drv_connect(bleio_device_obj_t *device);
|
|
|
|
|
|
|
|
void ble_drv_disconnect(bleio_device_obj_t *device);
|
2017-03-23 16:03:40 -04:00
|
|
|
|
2018-07-19 16:10:16 -04:00
|
|
|
bool ble_drv_discover_services(bleio_device_obj_t *device, uint16_t start_handle);
|
2017-03-26 16:59:30 -04:00
|
|
|
|
2018-07-19 16:59:18 -04:00
|
|
|
bool ble_drv_discover_characteristic(bleio_device_obj_t *device, bleio_service_obj_t *service, uint16_t start_handle);
|
2017-03-26 16:59:30 -04:00
|
|
|
|
|
|
|
void ble_drv_discover_descriptors(void);
|
|
|
|
|
2017-05-11 12:37:48 -04:00
|
|
|
#endif // BLUETOOTH_SD
|
|
|
|
|
2017-02-10 15:09:03 -05:00
|
|
|
#endif // BLUETOOTH_LE_DRIVER_H__
|