61 lines
2.1 KiB
C
61 lines
2.1 KiB
C
/*
|
|
* This file is part of the MicroPython project, http://micropython.org/
|
|
*
|
|
* The MIT License (MIT)
|
|
*
|
|
* Copyright (c) 2016 Glenn Ruben Bakke
|
|
* Copyright (c) 2018 Artur Pacholec
|
|
*
|
|
* 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.
|
|
*/
|
|
|
|
#include <stdio.h>
|
|
|
|
#include "ble_drv.h"
|
|
#include "nrfx.h"
|
|
#include "nrf_error.h"
|
|
#include "py/misc.h"
|
|
|
|
void common_hal_bleio_adapter_set_enabled(bool enabled) {
|
|
if (enabled) {
|
|
const uint32_t err = ble_drv_stack_enable();
|
|
if (err != NRF_SUCCESS) {
|
|
NRFX_ASSERT(err);
|
|
}
|
|
|
|
printf("SoftDevice enabled\n");
|
|
} else {
|
|
ble_drv_stack_disable();
|
|
}
|
|
}
|
|
|
|
bool common_hal_bleio_adapter_get_enabled(void) {
|
|
return ble_drv_stack_enabled();
|
|
}
|
|
|
|
void common_hal_bleio_adapter_get_address(vstr_t *vstr) {
|
|
ble_drv_addr_t address;
|
|
ble_drv_address_get(&address);
|
|
|
|
vstr_printf(vstr, ""HEX2_FMT":"HEX2_FMT":"HEX2_FMT":" \
|
|
HEX2_FMT":"HEX2_FMT":"HEX2_FMT"",
|
|
address.addr[5], address.addr[4], address.addr[3],
|
|
address.addr[2], address.addr[1], address.addr[0]);
|
|
}
|