Module nrf5x::ble_advertising_driver
[−]
[src]
Bluetooth Low Energy Advertising Driver
A system call driver that exposes the Bluetooth Low Energy advertising channel. The driver generates a unique static address for each process, allowing each process to act as its own device and send or scan for advertisements. Timing of advertising or scanning events is handled by the driver but processes can request an advertising or scanning interval. Processes can also control the TX power used for their advertisements.
Data payloads are limited to 31 bytes since the maximum advertising channel protocol data unit (PDU) is 37 bytes and includes a 6-byte header.
Allow system call
The allow systems calls are used for buffers from allocated by userland
There are three different buffers:
- Bluetooth Low Energy Gap Types
- Passive Scanner
- Advertisement
The following allow numbers are supported:
- 1: «Flags» Bluetooth Core Specification:Vol. 3, Part C, section 8.1.3
- 2: «Incomplete List of 16-bit Service Class UUIDs» Bluetooth Core Specification:Vol. 3, Part C, section 8.1.1
- 4: «Incomplete List of 32-bit Service Class UUIDs» Bluetooth Core Specification:Vol. 3, Part C, section 8.1.1
- 5: «Complete List of 32-bit Service Class UUIDs» Bluetooth Core Specification:Vol. 3, Part C, section 8.1.1
- 6: «Incomplete List of 128-bit Service Class UUIDs» Bluetooth Core Specification:Vol. 3, Part C, section 8.1.1
- 7: «Complete List of 128-bit Service Class UUIDs» Bluetooth Core Specification:Vol. 3, Part C, section 8.1.1
- 8: «Shortened Local Name» Bluetooth Core Specification:Vol. 3, Part C, section 8.1.2
- 9: «Complete Local Name» Bluetooth Core Specification:Vol. 3, Part C, section 8.1.2
- 10`: «Tx Power Level» Bluetooth Core Specification:Vol. 3, Part C, section 8.1.5
- 16: «Device ID» Device ID Profile v1.3 or later
- 18`: «Slave Connection Interval Range» Bluetooth Core Specification:Vol. 3, Part C, sections 11.1.8 and 18.8
- 20: «List of 16-bit Service Solicitation UUIDs» Bluetooth Core Specification:Vol. 3, Part C, sections 11.1.9 and 18.9
- 21: «List of 128-bit Service Solicitation UUIDs» Bluetooth Core Specification:Vol. 3, Part C, sections 11.1.9 and 18.9
- 22: «Service Data» Bluetooth Core Specification:Vol. 3, Part C, sections 11.1.10 and 18.10
- 25: «Appearance» Bluetooth Core Specification:Core Specification Supplement, Part A, section 1.12
- 26: «Advertising Interval» Bluetooth Core Specification:Core Specification Supplement, Part A, section 1.15
- 49: Passive Scanning
- 50: Advertising
- 255: «Manufacturer Specific Data» Bluetooth Core Specification:Vol. 3, Part C, section 8.1.4
The possible return codes from the 'allow' system call indicate the following:
- SUCCESS: The buffer has successfully been filled
- ENOSUPPORT: Invalid allow_num
- ENOMEM: No sufficient memory available
- EINVAL: Invalid address of the buffer or other error
- EBUSY: The driver is currently busy with other tasks
- ENOSUPPORT: The operation is not supported
Subscribe system call
The 'subscribe' system call supports two arguments `subscribe_num' and 'callback'. 'subscribe' is used to specify the specific operation, currently:
- 0: provides a callback user-space when a device scanning for advertisements and the callback is used to invoke user-space processes.
The possible return codes from the 'allow' system call indicate the following:
- ENOMEM: Not sufficient amount memory
- EINVAL: Invalid operation
Command system call
The command
system call supports two arguments cmd
and 'sub_cmd'.
'cmd' is used to specify the specific operation, currently
the following cmd's are supported:
- 0: start advertisement
- 1: stop advertisement
- 2: configure tx power
- 3: configure advertisement interval
- 4: clear the advertisement payload
- 5: start scanning
- 6: initialize driver
The possible return codes from the 'command' system call indicate the following:
- SUCCESS: The command was successful
- EBUSY: The driver is currently busy with other tasks
- ENOSUPPORT: The operation is not supported
Usage
Advertisement: +-------------------------------+ | Initilize Advertisement Buffer| +-------------------------------+ | +-------------------------------+ | Request BLE Address | +-------------------------------+ | +-------------------------------+ | Configure ADV_TYPE | +-------------------------------+ | +-------------------------------+ | Start Advertising | +-------------------------------+ | +-------------------------------+ | Configure Alarm |------------| +-------------------------------+ | | | +-------------------------------+ | | Send Packet |------------| +-------------------------------+ Client +-------------------------------+ | Packet Sent or Error |------------| +-------------------------------+ | | | +-------------------------------+ | | Notify BLE Driver |------------| +-------------------------------+
Passive Scanning: +-----------------------+ | Configure Callback | +-----------------------+ | +-----------------------+ | Initilize Scan Buffer | +-----------------------+ | +-----------------------+ | Start Passive Scanning| +-----------------------+ | +-----------------------+ | Configure Alarm |--------------| +-----------------------+ | | | +-----------------------+ | | Receive Packet |--------------| +-----------------------+ Client +-------------------------------+ | Packet Received or Error |------------| +-------------------------------+ | | | +-------------------------------+ | | Notify BLE Driver |------------| +-------------------------------+
You need a device that provides the nrf5x::ble_advertising_hil::BleAdvertisementDriver
trait
along with a virtual timer to perform events and not block the entire kernel
let ble_radio = static_init!( nrf5x::ble_advertising_driver::BLE <'static, nrf52::radio::Radio, VirtualMuxAlarm<'static, Rtc>>, nrf5x::ble_advertising_driver::BLE::new( &mut nrf52::radio::RADIO, kernel::Grant::create(), &mut nrf5x::ble_advertising_driver::BUF, ble_radio_virtual_alarm)); nrf5x::ble_advertising_hil::BleAdvertisementDriver::set_rx_client(&nrf52::radio::RADIO, ble_radio); nrf5x::ble_advertising_hil::BleAdvertisementDriver::set_tx_client(&nrf52::radio::RADIO, ble_radio); ble_radio_virtual_alarm.set_client(ble_radio);
Authors
- Niklas Adolfsson niklasadolfsson1@gmail.com
- Fredrik Nilsson frednils@student.chalmers.se
- Date: June 22, 2017
Reexports
use ble_advertising_hil; |
use ble_advertising_hil::RadioChannel; |
use core::cell::Cell; |
use core::cmp; |
use kernel; |
use kernel::hil::time::Frequency; |
use kernel::returncode::ReturnCode; |
Structs
AlarmData | |
App | |
BLE | |
BLEGap |
Enums
AllowType | |
BLEAdvertisementType | |
BLEGapType | |
BLEState | |
Expiration |
Constants
DRIVER_NUM |
Syscall Number |
PACKET_ADDR_END | |
PACKET_ADDR_START | |
PACKET_HDR_LEN | |
PACKET_HDR_PDU | |
PACKET_LENGTH | |
PACKET_PAYLOAD_START | |
PACKET_START |
Statics
BUF |