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)
|
|
|
|
*
|
2019-06-19 10:42:36 -04:00
|
|
|
* Copyright (c) 2019 Dan Halbert for Adafruit Industries
|
2018-07-08 15:13:05 -04:00
|
|
|
* Copyright (c) 2018 Artur Pacholec
|
2019-06-19 10:42:36 -04:00
|
|
|
* Copyright (c) 2016 Glenn Ruben Bakke
|
2016-11-16 15:38:25 -05:00
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
2018-07-08 15:13:05 -04:00
|
|
|
#ifndef MICROPY_INCLUDED_SHARED_BINDINGS_BLEIO___INIT___H
|
|
|
|
#define MICROPY_INCLUDED_SHARED_BINDINGS_BLEIO___INIT___H
|
2016-11-16 15:38:25 -05:00
|
|
|
|
2019-07-27 13:20:59 -04:00
|
|
|
#include "py/objlist.h"
|
|
|
|
|
2019-08-29 18:44:27 -04:00
|
|
|
#include "shared-bindings/_bleio/Adapter.h"
|
2019-07-27 13:20:59 -04:00
|
|
|
|
2019-08-29 18:44:27 -04:00
|
|
|
#include "common-hal/_bleio/__init__.h"
|
|
|
|
#include "common-hal/_bleio/Adapter.h"
|
2016-12-13 14:27:26 -05:00
|
|
|
|
2018-07-08 15:13:05 -04:00
|
|
|
extern const super_adapter_obj_t common_hal_bleio_adapter_obj;
|
2016-12-13 14:27:26 -05:00
|
|
|
|
2019-08-06 22:55:25 -04:00
|
|
|
extern void common_hal_bleio_check_connected(uint16_t conn_handle);
|
|
|
|
|
2019-07-27 13:20:59 -04:00
|
|
|
extern uint16_t common_hal_bleio_device_get_conn_handle(mp_obj_t device);
|
2019-08-28 16:15:09 -04:00
|
|
|
extern mp_obj_list_t *common_hal_bleio_device_get_remote_service_list(mp_obj_t device);
|
2019-07-27 13:20:59 -04:00
|
|
|
extern void common_hal_bleio_device_discover_remote_services(mp_obj_t device, mp_obj_t service_uuids_whitelist);
|
|
|
|
|
2019-08-06 22:55:25 -04:00
|
|
|
extern mp_obj_t common_hal_bleio_gatts_read(uint16_t handle, uint16_t conn_handle);
|
|
|
|
extern void common_hal_bleio_gatts_write(uint16_t handle, uint16_t conn_handle, mp_buffer_info_t *bufinfo);
|
|
|
|
extern void common_hal_bleio_gattc_write(uint16_t handle, uint16_t conn_handle, mp_buffer_info_t *bufinfo, bool write_no_response);
|
|
|
|
|
2019-07-27 13:20:59 -04:00
|
|
|
|
2018-07-08 15:13:05 -04:00
|
|
|
#endif // MICROPY_INCLUDED_SHARED_BINDINGS_BLEIO___INIT___H
|