2016-11-16 15:38:25 -05:00
|
|
|
/*
|
|
|
|
* This file is part of the Micro Python project, http://micropython.org/
|
|
|
|
*
|
|
|
|
* 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
|
|
|
|
|
2016-11-16 15:38:25 -05:00
|
|
|
#include <stdint.h>
|
2017-02-09 17:56:32 -05:00
|
|
|
#include <stdbool.h>
|
2016-11-16 15:38:25 -05:00
|
|
|
|
2017-02-10 15:09:03 -05:00
|
|
|
#include "modubluepy.h"
|
|
|
|
|
2017-04-02 10:39:14 -04:00
|
|
|
typedef struct {
|
|
|
|
uint8_t addr[6];
|
|
|
|
uint8_t addr_type;
|
|
|
|
} ble_drv_addr_t;
|
|
|
|
|
2017-03-14 02:59:29 -04:00
|
|
|
typedef struct {
|
|
|
|
uint8_t * p_peer_addr;
|
2017-03-16 17:46:26 -04:00
|
|
|
uint8_t addr_type;
|
2017-03-14 02:59:29 -04:00
|
|
|
bool is_scan_resp;
|
|
|
|
int8_t rssi;
|
|
|
|
uint8_t data_len;
|
|
|
|
uint8_t * p_data;
|
2017-03-16 17:46:26 -04:00
|
|
|
uint8_t adv_type;
|
2017-03-14 02:59:29 -04:00
|
|
|
} ble_drv_adv_data_t;
|
|
|
|
|
2017-03-29 17:34:33 -04:00
|
|
|
typedef struct {
|
|
|
|
uint16_t uuid;
|
|
|
|
uint8_t uuid_type;
|
|
|
|
uint16_t start_handle;
|
|
|
|
uint16_t end_handle;
|
|
|
|
} ble_drv_service_data_t;
|
|
|
|
|
2017-03-30 16:41:19 -04:00
|
|
|
typedef struct {
|
|
|
|
uint16_t uuid;
|
|
|
|
uint8_t uuid_type;
|
|
|
|
uint8_t props;
|
|
|
|
uint16_t decl_handle;
|
|
|
|
uint16_t value_handle;
|
|
|
|
} ble_drv_char_data_t;
|
|
|
|
|
2017-03-14 03:13:32 -04:00
|
|
|
typedef void (*ble_drv_gap_evt_callback_t)(mp_obj_t self, uint16_t event_id, uint16_t conn_handle, uint16_t length, uint8_t * data);
|
|
|
|
typedef void (*ble_drv_gatts_evt_callback_t)(mp_obj_t self, uint16_t event_id, uint16_t attr_handle, uint16_t length, uint8_t * data);
|
2017-03-26 16:51:10 -04:00
|
|
|
typedef void (*ble_drv_gattc_evt_callback_t)(mp_obj_t self, uint16_t event_id, uint16_t attr_handle, uint16_t length, uint8_t * data);
|
2017-03-14 03:13:32 -04:00
|
|
|
typedef void (*ble_drv_adv_evt_callback_t)(mp_obj_t self, uint16_t event_id, ble_drv_adv_data_t * data);
|
2017-03-29 17:34:33 -04:00
|
|
|
typedef void (*ble_drv_disc_add_service_callback_t)(mp_obj_t self, ble_drv_service_data_t * p_service_data);
|
2017-03-30 16:41:19 -04:00
|
|
|
typedef void (*ble_drv_disc_add_char_callback_t)(mp_obj_t self, ble_drv_char_data_t * p_desc_data);
|
2017-04-01 10:34:26 -04:00
|
|
|
typedef void (*ble_drv_gattc_char_data_callback_t)(mp_obj_t self, uint16_t length, uint8_t * p_data);
|
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
|
|
|
void ble_drv_stack_disable(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
|
|
|
|
2017-04-02 10:39:14 -04:00
|
|
|
void ble_drv_address_get(ble_drv_addr_t * p_addr);
|
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
|
|
|
|
2017-02-17 13:02:24 -05:00
|
|
|
bool ble_drv_service_add(ubluepy_service_obj_t * p_service_obj);
|
2017-02-10 15:09:03 -05:00
|
|
|
|
2017-02-17 13:02:24 -05:00
|
|
|
bool ble_drv_characteristic_add(ubluepy_characteristic_obj_t * p_char_obj);
|
2017-02-11 10:01:50 -05:00
|
|
|
|
2017-02-17 13:02:24 -05:00
|
|
|
bool ble_drv_advertise_data(ubluepy_advertise_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);
|
|
|
|
|
2017-03-14 03:13:32 -04:00
|
|
|
void ble_drv_gap_event_handler_set(mp_obj_t obs, ble_drv_gap_evt_callback_t evt_handler);
|
2017-02-15 17:32:42 -05:00
|
|
|
|
2017-03-14 03:13:32 -04:00
|
|
|
void ble_drv_gatts_event_handler_set(mp_obj_t obj, ble_drv_gatts_evt_callback_t evt_handler);
|
2017-02-18 18:08:05 -05:00
|
|
|
|
2017-03-26 16:57:07 -04:00
|
|
|
void ble_drv_gattc_event_handler_set(mp_obj_t obj, ble_drv_gattc_evt_callback_t evt_handler);
|
|
|
|
|
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);
|
|
|
|
|
2017-04-01 10:34:26 -04:00
|
|
|
void ble_drv_attr_c_read(uint16_t conn_handle, uint16_t handle, mp_obj_t obj, ble_drv_gattc_char_data_callback_t cb);
|
2017-02-18 15:11:39 -05:00
|
|
|
|
2017-05-14 12:57:58 -04:00
|
|
|
void ble_drv_attr_s_write(uint16_t conn_handle, uint16_t handle, uint16_t len, uint8_t * p_data);
|
2017-02-18 15:11:39 -05:00
|
|
|
|
2017-05-14 12:57:58 -04:00
|
|
|
void ble_drv_attr_s_notify(uint16_t conn_handle, uint16_t handle, uint16_t len, uint8_t * p_data);
|
2017-02-18 15:11:39 -05:00
|
|
|
|
2017-05-30 13:29:46 -04:00
|
|
|
void ble_drv_attr_c_write(uint16_t conn_handle, uint16_t handle, uint16_t len, uint8_t * p_data, bool w_response);
|
2017-05-14 13:00:22 -04:00
|
|
|
|
2017-03-12 14:50:38 -04:00
|
|
|
void ble_drv_scan_start(void);
|
|
|
|
|
|
|
|
void ble_drv_scan_stop(void);
|
|
|
|
|
2017-03-14 03:13:32 -04:00
|
|
|
void ble_drv_adv_report_handler_set(mp_obj_t obj, ble_drv_adv_evt_callback_t evt_handler);
|
2017-03-14 02:59:29 -04:00
|
|
|
|
2017-03-23 16:03:40 -04:00
|
|
|
void ble_drv_connect(uint8_t * p_addr, uint8_t addr_type);
|
|
|
|
|
2017-05-13 12:03:50 -04:00
|
|
|
bool ble_drv_discover_services(mp_obj_t obj, uint16_t conn_handle, uint16_t start_handle, ble_drv_disc_add_service_callback_t cb);
|
2017-03-26 16:59:30 -04:00
|
|
|
|
2017-03-30 16:41:19 -04:00
|
|
|
bool ble_drv_discover_characteristic(mp_obj_t obj,
|
|
|
|
uint16_t conn_handle,
|
|
|
|
uint16_t start_handle,
|
|
|
|
uint16_t end_handle,
|
|
|
|
ble_drv_disc_add_char_callback_t cb);
|
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__
|