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
|
2018-07-08 15:13:05 -04:00
|
|
|
* Copyright (c) 2018 Artur Pacholec
|
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
|
|
|
#include "shared-bindings/bleio/__init__.h"
|
2018-07-17 05:44:55 -04:00
|
|
|
#include "shared-bindings/bleio/Address.h"
|
2018-07-17 03:34:39 -04:00
|
|
|
#include "shared-bindings/bleio/AddressType.h"
|
2018-07-17 11:00:37 -04:00
|
|
|
#include "shared-bindings/bleio/AdvertisementData.h"
|
2018-12-28 22:55:29 -05:00
|
|
|
#include "shared-bindings/bleio/Broadcaster.h"
|
2018-07-18 17:47:06 -04:00
|
|
|
#include "shared-bindings/bleio/Characteristic.h"
|
2019-01-07 22:46:20 -05:00
|
|
|
#include "shared-bindings/bleio/CharacteristicBuffer.h"
|
2018-07-16 10:31:28 -04:00
|
|
|
#include "shared-bindings/bleio/Descriptor.h"
|
2018-12-30 22:31:51 -05:00
|
|
|
#include "shared-bindings/bleio/Peripheral.h"
|
2018-07-17 11:00:37 -04:00
|
|
|
#include "shared-bindings/bleio/ScanEntry.h"
|
2018-07-18 04:22:11 -04:00
|
|
|
#include "shared-bindings/bleio/Scanner.h"
|
2018-07-18 19:01:41 -04:00
|
|
|
#include "shared-bindings/bleio/Service.h"
|
2018-07-16 08:44:20 -04:00
|
|
|
#include "shared-bindings/bleio/UUID.h"
|
2016-11-16 15:38:25 -05:00
|
|
|
|
2018-07-08 15:13:05 -04:00
|
|
|
//| :mod:`bleio` --- Bluetooth Low Energy functionality
|
|
|
|
//| ================================================================
|
|
|
|
//|
|
|
|
|
//| .. module:: bleio
|
|
|
|
//| :synopsis: Bluetooth Low Energy functionality
|
|
|
|
//| :platform: nRF
|
|
|
|
//|
|
|
|
|
//| The `bleio` module contains methods for managing the BLE adapter.
|
|
|
|
//|
|
|
|
|
//| Libraries
|
|
|
|
//|
|
|
|
|
//| .. toctree::
|
|
|
|
//| :maxdepth: 3
|
|
|
|
//|
|
2018-07-17 05:44:55 -04:00
|
|
|
//| Address
|
2018-07-17 03:34:39 -04:00
|
|
|
//| AddressType
|
2018-07-17 11:00:37 -04:00
|
|
|
//| AdvertisementData
|
2018-07-08 15:13:05 -04:00
|
|
|
//| Adapter
|
2019-01-09 13:31:32 -05:00
|
|
|
//| Broadcaster
|
2018-07-18 17:47:06 -04:00
|
|
|
//| Characteristic
|
2019-01-09 13:31:32 -05:00
|
|
|
//| CharacteristicBuffer
|
2019-02-24 14:23:00 -05:00
|
|
|
// Work-in-progress classes are omitted, and marked as :orphan: in their files.
|
|
|
|
// Descriptor
|
|
|
|
// Device
|
2019-01-09 13:31:32 -05:00
|
|
|
//| Peripheral
|
2019-02-24 14:23:00 -05:00
|
|
|
// ScanEntry
|
|
|
|
// Scanner
|
2018-07-18 19:01:41 -04:00
|
|
|
//| Service
|
2018-07-16 08:44:20 -04:00
|
|
|
//| UUID
|
2018-07-08 15:13:05 -04:00
|
|
|
//|
|
|
|
|
//| .. attribute:: adapter
|
|
|
|
//|
|
|
|
|
//| BLE Adapter information, such as enabled state as well as MAC
|
|
|
|
//| address.
|
|
|
|
//| This object is the sole instance of `bleio.Adapter`.
|
|
|
|
//|
|
2016-12-13 14:27:26 -05:00
|
|
|
|
2018-07-08 15:13:05 -04:00
|
|
|
STATIC const mp_rom_map_elem_t bleio_module_globals_table[] = {
|
2018-07-17 11:00:37 -04:00
|
|
|
{ MP_ROM_QSTR(MP_QSTR___name__), MP_ROM_QSTR(MP_QSTR_bleio) },
|
|
|
|
{ MP_ROM_QSTR(MP_QSTR_Address), MP_ROM_PTR(&bleio_address_type) },
|
|
|
|
{ MP_ROM_QSTR(MP_QSTR_AdvertisementData), MP_ROM_PTR(&bleio_advertisementdata_type) },
|
2018-12-28 22:55:29 -05:00
|
|
|
{ MP_ROM_QSTR(MP_QSTR_Broadcaster), MP_ROM_PTR(&bleio_broadcaster_type) },
|
2018-07-18 17:47:06 -04:00
|
|
|
{ MP_ROM_QSTR(MP_QSTR_Characteristic), MP_ROM_PTR(&bleio_characteristic_type) },
|
2019-01-07 22:46:20 -05:00
|
|
|
{ MP_ROM_QSTR(MP_QSTR_CharacteristicBuffer), MP_ROM_PTR(&bleio_characteristic_buffer_type) },
|
2019-02-24 14:23:00 -05:00
|
|
|
// { MP_ROM_QSTR(MP_QSTR_Descriptor), MP_ROM_PTR(&bleio_descriptor_type) },
|
2018-12-30 22:31:51 -05:00
|
|
|
{ MP_ROM_QSTR(MP_QSTR_Peripheral), MP_ROM_PTR(&bleio_peripheral_type) },
|
2019-02-24 14:23:00 -05:00
|
|
|
// Hide work-in-progress.
|
|
|
|
// { MP_ROM_QSTR(MP_QSTR_ScanEntry), MP_ROM_PTR(&bleio_scanentry_type) },
|
|
|
|
// { MP_ROM_QSTR(MP_QSTR_Scanner), MP_ROM_PTR(&bleio_scanner_type) },
|
2018-07-18 19:01:41 -04:00
|
|
|
{ MP_ROM_QSTR(MP_QSTR_Service), MP_ROM_PTR(&bleio_service_type) },
|
2018-07-17 11:00:37 -04:00
|
|
|
{ MP_ROM_QSTR(MP_QSTR_UUID), MP_ROM_PTR(&bleio_uuid_type) },
|
2018-07-16 08:44:20 -04:00
|
|
|
|
|
|
|
// Properties
|
2018-07-17 11:00:37 -04:00
|
|
|
{ MP_ROM_QSTR(MP_QSTR_adapter), MP_ROM_PTR(&common_hal_bleio_adapter_obj) },
|
2018-07-16 08:44:20 -04:00
|
|
|
|
|
|
|
// Enum-like Classes.
|
2018-07-17 11:00:37 -04:00
|
|
|
{ MP_ROM_QSTR(MP_QSTR_AddressType), MP_ROM_PTR(&bleio_addresstype_type) },
|
2018-07-08 15:13:05 -04:00
|
|
|
};
|
2016-12-13 14:27:26 -05:00
|
|
|
|
2018-07-08 15:13:05 -04:00
|
|
|
STATIC MP_DEFINE_CONST_DICT(bleio_module_globals, bleio_module_globals_table);
|
2016-12-13 14:27:26 -05:00
|
|
|
|
2018-07-08 15:13:05 -04:00
|
|
|
const mp_obj_module_t bleio_module = {
|
|
|
|
.base = { &mp_type_module },
|
|
|
|
.globals = (mp_obj_dict_t*)&bleio_module_globals,
|
|
|
|
};
|