mbed-os5 only for TYBLE16

Dependents:   TYBLE16_simple_data_logger TYBLE16_MP3_Air

Committer:
kenjiArai
Date:
Tue Dec 31 06:02:27 2019 +0000
Revision:
1:9db0e321a9f4
Parent:
0:5b88d5760320
updated based on mbed-os5.15.0

Who changed what in which revision?

UserRevisionLine numberNew contents of line
kenjiArai 0:5b88d5760320 1 # BLE API {#mainpage}
kenjiArai 0:5b88d5760320 2
kenjiArai 0:5b88d5760320 3 The BLE module within mbed OS offers a high abstraction level for using
kenjiArai 0:5b88d5760320 4 Bluetooth Low Energy on multiple platforms.
kenjiArai 0:5b88d5760320 5
kenjiArai 0:5b88d5760320 6 This documentation describes the internal structure of the mbed
kenjiArai 0:5b88d5760320 7 [BLE API](https://github.com/armmbed/ble).
kenjiArai 0:5b88d5760320 8
kenjiArai 0:5b88d5760320 9 For getting started with BLE on mbed, check our [introduction
kenjiArai 0:5b88d5760320 10 page](https://docs.mbed.com/docs/ble-intros/en/latest/).
kenjiArai 0:5b88d5760320 11
kenjiArai 0:5b88d5760320 12 For mbed OS examples using BLE, check [this
kenjiArai 0:5b88d5760320 13 repository](https://github.com/armmbed/ble-examples). For mbed-classic
kenjiArai 0:5b88d5760320 14 examples, please refer to [code under mbed.org](https://developer.mbed.org/teams/Bluetooth-Low-Energy/code/).
kenjiArai 0:5b88d5760320 15
kenjiArai 0:5b88d5760320 16 ## Supported Services
kenjiArai 0:5b88d5760320 17
kenjiArai 0:5b88d5760320 18 Currently supported reference services include:
kenjiArai 0:5b88d5760320 19
kenjiArai 0:5b88d5760320 20 * [Battery](@ref BatteryService)
kenjiArai 0:5b88d5760320 21 * [Device Firmware Update (DFU)](@ref DFUService)
kenjiArai 0:5b88d5760320 22 * [Device Information](@ref DeviceInformationService)
kenjiArai 0:5b88d5760320 23 * [Health Thermometer](@ref HealthThermometerService)
kenjiArai 0:5b88d5760320 24 * [Heart Rate](@ref HeartRateService)
kenjiArai 0:5b88d5760320 25 * [UART](@ref UARTService)
kenjiArai 0:5b88d5760320 26 * [UriBeacon](@ref URIBeaconConfigService)
kenjiArai 0:5b88d5760320 27 * [iBeacon](@ref iBeacon)
kenjiArai 0:5b88d5760320 28
kenjiArai 0:5b88d5760320 29 The [documentation](https://docs.mbed.com/docs/ble-intros/en/latest/AdvSamples/Overview/)
kenjiArai 0:5b88d5760320 30 contains an overview on how to create new, application-specific services.