change(max32666): Update SDK to 0.2.1-12
Showing
with
7285 additions
and
171981 deletions
+7285
-171981
- lib/sdk/Applications/EvKitExamples/BLE_beacon/Makefile lib/sdk/Applications/EvKitExamples/BLE_beacon/Makefile +20 -4
- lib/sdk/Applications/EvKitExamples/BLE_beacon/README.md lib/sdk/Applications/EvKitExamples/BLE_beacon/README.md +4 -0
- lib/sdk/Applications/EvKitExamples/BLE_beacon/config.mk lib/sdk/Applications/EvKitExamples/BLE_beacon/config.mk +7 -2
- lib/sdk/Applications/EvKitExamples/BLE_beacon/main.c lib/sdk/Applications/EvKitExamples/BLE_beacon/main.c +21 -2
- lib/sdk/Applications/EvKitExamples/BLE_beacon/stack_beacon.c lib/sdk/Applications/EvKitExamples/BLE_beacon/stack_beacon.c +24 -2
- lib/sdk/Applications/EvKitExamples/BLE_datc/Makefile lib/sdk/Applications/EvKitExamples/BLE_datc/Makefile +20 -4
- lib/sdk/Applications/EvKitExamples/BLE_datc/README.md lib/sdk/Applications/EvKitExamples/BLE_datc/README.md +4 -0
- lib/sdk/Applications/EvKitExamples/BLE_datc/config.mk lib/sdk/Applications/EvKitExamples/BLE_datc/config.mk +3 -0
- lib/sdk/Applications/EvKitExamples/BLE_datc/main.c lib/sdk/Applications/EvKitExamples/BLE_datc/main.c +21 -2
- lib/sdk/Applications/EvKitExamples/BLE_datc/stack_datc.c lib/sdk/Applications/EvKitExamples/BLE_datc/stack_datc.c +23 -5
- lib/sdk/Applications/EvKitExamples/BLE_dats/Makefile lib/sdk/Applications/EvKitExamples/BLE_dats/Makefile +20 -4
- lib/sdk/Applications/EvKitExamples/BLE_dats/README.md lib/sdk/Applications/EvKitExamples/BLE_dats/README.md +4 -0
- lib/sdk/Applications/EvKitExamples/BLE_dats/config.mk lib/sdk/Applications/EvKitExamples/BLE_dats/config.mk +3 -0
- lib/sdk/Applications/EvKitExamples/BLE_dats/main.c lib/sdk/Applications/EvKitExamples/BLE_dats/main.c +21 -2
- lib/sdk/Applications/EvKitExamples/BLE_dats/stack_dats.c lib/sdk/Applications/EvKitExamples/BLE_dats/stack_dats.c +23 -4
- lib/sdk/Applications/EvKitExamples/BLE_fcc/Makefile lib/sdk/Applications/EvKitExamples/BLE_fcc/Makefile +160 -0
- lib/sdk/Applications/EvKitExamples/BLE_fcc/README.md lib/sdk/Applications/EvKitExamples/BLE_fcc/README.md +4 -0
- lib/sdk/Applications/EvKitExamples/BLE_fcc/main.c lib/sdk/Applications/EvKitExamples/BLE_fcc/main.c +291 -0
- lib/sdk/Applications/EvKitExamples/BLE_fcc/stack_fcc.c lib/sdk/Applications/EvKitExamples/BLE_fcc/stack_fcc.c +113 -0
- lib/sdk/Applications/EvKitExamples/BLE_fit/Makefile lib/sdk/Applications/EvKitExamples/BLE_fit/Makefile +21 -1
- lib/sdk/Applications/EvKitExamples/BLE_fit/README.md lib/sdk/Applications/EvKitExamples/BLE_fit/README.md +4 -0
- lib/sdk/Applications/EvKitExamples/BLE_fit/config.mk lib/sdk/Applications/EvKitExamples/BLE_fit/config.mk +4 -0
- lib/sdk/Applications/EvKitExamples/BLE_fit/main.c lib/sdk/Applications/EvKitExamples/BLE_fit/main.c +26 -4
- lib/sdk/Applications/EvKitExamples/BLE_fit/stack_fit.c lib/sdk/Applications/EvKitExamples/BLE_fit/stack_fit.c +26 -3
- lib/sdk/Applications/EvKitExamples/BLE_fit_ds/Makefile lib/sdk/Applications/EvKitExamples/BLE_fit_ds/Makefile +34 -1
- lib/sdk/Applications/EvKitExamples/BLE_fit_ds/README.md lib/sdk/Applications/EvKitExamples/BLE_fit_ds/README.md +4 -0
- lib/sdk/Applications/EvKitExamples/BLE_fit_ds/config.mk lib/sdk/Applications/EvKitExamples/BLE_fit_ds/config.mk +6 -0
- lib/sdk/Applications/EvKitExamples/BLE_fit_ds/fit_main.c lib/sdk/Applications/EvKitExamples/BLE_fit_ds/fit_main.c +3 -0
- lib/sdk/Applications/EvKitExamples/BLE_fit_ds/main.c lib/sdk/Applications/EvKitExamples/BLE_fit_ds/main.c +122 -33
- lib/sdk/Applications/EvKitExamples/BLE_fit_ds/stack_fit.c lib/sdk/Applications/EvKitExamples/BLE_fit_ds/stack_fit.c +26 -4
- lib/sdk/Applications/EvKitExamples/BLE_fit_ds/wakeup.c lib/sdk/Applications/EvKitExamples/BLE_fit_ds/wakeup.c +425 -460
- lib/sdk/Applications/EvKitExamples/BLE_fit_ds/wakeup.h lib/sdk/Applications/EvKitExamples/BLE_fit_ds/wakeup.h +23 -5
- lib/sdk/Applications/EvKitExamples/BLE_fit_ds_int/.cproject lib/sdk/Applications/EvKitExamples/BLE_fit_ds_int/.cproject +205 -0
- lib/sdk/Applications/EvKitExamples/BLE_fit_ds_int/.project lib/sdk/Applications/EvKitExamples/BLE_fit_ds_int/.project +26 -0
- lib/sdk/Applications/EvKitExamples/BLE_fit_ds_int/.settings/language.settings.xml ...itExamples/BLE_fit_ds_int/.settings/language.settings.xml +15 -0
- lib/sdk/Applications/EvKitExamples/BLE_fit_ds_int/BLE_fit_ds_int.launch ...ations/EvKitExamples/BLE_fit_ds_int/BLE_fit_ds_int.launch +62 -0
- lib/sdk/Applications/EvKitExamples/BLE_fit_ds_int/Makefile lib/sdk/Applications/EvKitExamples/BLE_fit_ds_int/Makefile +223 -0
- lib/sdk/Applications/EvKitExamples/BLE_fit_ds_int/README.md lib/sdk/Applications/EvKitExamples/BLE_fit_ds_int/README.md +22 -0
- lib/sdk/Applications/EvKitExamples/BLE_fit_ds_int/backup.S lib/sdk/Applications/EvKitExamples/BLE_fit_ds_int/backup.S +89 -0
- lib/sdk/Applications/EvKitExamples/BLE_fit_ds_int/config.mk lib/sdk/Applications/EvKitExamples/BLE_fit_ds_int/config.mk +11 -0
- lib/sdk/Applications/EvKitExamples/BLE_fit_ds_int/fit_main.c lib/sdk/Applications/EvKitExamples/BLE_fit_ds_int/fit_main.c +732 -0
- lib/sdk/Applications/EvKitExamples/BLE_fit_ds_int/main.c lib/sdk/Applications/EvKitExamples/BLE_fit_ds_int/main.c +835 -0
- lib/sdk/Applications/EvKitExamples/BLE_fit_ds_int/stack_fit.c ...sdk/Applications/EvKitExamples/BLE_fit_ds_int/stack_fit.c +196 -0
- lib/sdk/Applications/EvKitExamples/BLE_fit_ds_int/wakeup.c lib/sdk/Applications/EvKitExamples/BLE_fit_ds_int/wakeup.c +571 -0
- lib/sdk/Applications/EvKitExamples/BLE_fit_ds_int/wakeup.h lib/sdk/Applications/EvKitExamples/BLE_fit_ds_int/wakeup.h +88 -0
- lib/sdk/Applications/EvKitExamples/BLE_hci_uart/Makefile lib/sdk/Applications/EvKitExamples/BLE_hci_uart/Makefile +14 -4
- lib/sdk/Applications/EvKitExamples/BLE_hci_uart/README.md lib/sdk/Applications/EvKitExamples/BLE_hci_uart/README.md +4 -0
- lib/sdk/Applications/EvKitExamples/BLE_hci_uart/config.mk lib/sdk/Applications/EvKitExamples/BLE_hci_uart/config.mk +1 -1
- lib/sdk/Applications/EvKitExamples/BLE_hci_uart/main.c lib/sdk/Applications/EvKitExamples/BLE_hci_uart/main.c +18 -0
- lib/sdk/Applications/EvKitExamples/BLE_hci_uart/stack_setup.c ...sdk/Applications/EvKitExamples/BLE_hci_uart/stack_setup.c +23 -0
- lib/sdk/Applications/EvKitExamples/BLE_scanner/Makefile lib/sdk/Applications/EvKitExamples/BLE_scanner/Makefile +20 -4
- lib/sdk/Applications/EvKitExamples/BLE_scanner/README.md lib/sdk/Applications/EvKitExamples/BLE_scanner/README.md +4 -0
- lib/sdk/Applications/EvKitExamples/BLE_scanner/config.mk lib/sdk/Applications/EvKitExamples/BLE_scanner/config.mk +4 -0
- lib/sdk/Applications/EvKitExamples/BLE_scanner/main.c lib/sdk/Applications/EvKitExamples/BLE_scanner/main.c +21 -2
- lib/sdk/Applications/EvKitExamples/BLE_scanner/stack_scanner.c ...dk/Applications/EvKitExamples/BLE_scanner/stack_scanner.c +24 -2
- lib/sdk/Applications/EvKitExamples/ECC/Makefile lib/sdk/Applications/EvKitExamples/ECC/Makefile +2 -5
- lib/sdk/Applications/EvKitExamples/Flash/Flash.launch lib/sdk/Applications/EvKitExamples/Flash/Flash.launch +1 -1
- lib/sdk/Applications/EvKitExamples/FreeRTOSDemo/FreeRTOSConfig.h .../Applications/EvKitExamples/FreeRTOSDemo/FreeRTOSConfig.h +1 -1
- lib/sdk/Applications/EvKitExamples/I2S_SPIS/Makefile lib/sdk/Applications/EvKitExamples/I2S_SPIS/Makefile +118 -0
- lib/sdk/Applications/EvKitExamples/I2S_SPIS/main.c lib/sdk/Applications/EvKitExamples/I2S_SPIS/main.c +286 -0
- lib/sdk/Applications/EvKitExamples/I2S_SPIS/max9867.c lib/sdk/Applications/EvKitExamples/I2S_SPIS/max9867.c +296 -0
- lib/sdk/Applications/EvKitExamples/I2S_SPIS/max9867.h lib/sdk/Applications/EvKitExamples/I2S_SPIS/max9867.h +220 -0
- lib/sdk/Applications/EvKitExamples/LCD/main.c lib/sdk/Applications/EvKitExamples/LCD/main.c +3 -2
- lib/sdk/Applications/EvKitExamples/SPI/main.c lib/sdk/Applications/EvKitExamples/SPI/main.c +3 -2
- lib/sdk/Applications/EvKitExamples/SPI_DMA/main.c lib/sdk/Applications/EvKitExamples/SPI_DMA/main.c +1 -1
- lib/sdk/Applications/EvKitExamples/UART/main.c lib/sdk/Applications/EvKitExamples/UART/main.c +19 -10
- lib/sdk/Applications/EvKitExamples/USB_CDCACM/descriptors.h lib/sdk/Applications/EvKitExamples/USB_CDCACM/descriptors.h +185 -44
- lib/sdk/Applications/EvKitExamples/USB_CDCACM/main.c lib/sdk/Applications/EvKitExamples/USB_CDCACM/main.c +95 -62
- lib/sdk/Documentation/html/dma_8h_source.html lib/sdk/Documentation/html/dma_8h_source.html +117 -123
- lib/sdk/Documentation/html/dma__regs_8h_source.html lib/sdk/Documentation/html/dma__regs_8h_source.html +1 -1
- lib/sdk/Documentation/html/gpio_8h_source.html lib/sdk/Documentation/html/gpio_8h_source.html +4 -2
- lib/sdk/Documentation/html/group__DMA__CFG.html lib/sdk/Documentation/html/group__DMA__CFG.html +8 -32
- lib/sdk/Documentation/html/group__DMA__CFG.js lib/sdk/Documentation/html/group__DMA__CFG.js +2 -8
- lib/sdk/Documentation/html/group__DMA__CN.html lib/sdk/Documentation/html/group__DMA__CN.html +0 -64
- lib/sdk/Documentation/html/group__DMA__CN.js lib/sdk/Documentation/html/group__DMA__CN.js +1 -17
- lib/sdk/Documentation/html/group__DMA__INTR.html lib/sdk/Documentation/html/group__DMA__INTR.html +0 -64
- lib/sdk/Documentation/html/group__DMA__INTR.js lib/sdk/Documentation/html/group__DMA__INTR.js +1 -17
- lib/sdk/Documentation/html/group__RTC__OSCCTRL.html lib/sdk/Documentation/html/group__RTC__OSCCTRL.html +8 -8
- lib/sdk/Documentation/html/group__RTC__OSCCTRL.js lib/sdk/Documentation/html/group__RTC__OSCCTRL.js +2 -2
- lib/sdk/Documentation/html/group__dma.html lib/sdk/Documentation/html/group__dma.html +8 -20
- lib/sdk/Documentation/html/group__dma.js lib/sdk/Documentation/html/group__dma.js +3 -6
- lib/sdk/Documentation/html/group__gpio.html lib/sdk/Documentation/html/group__gpio.html +54 -0
- lib/sdk/Documentation/html/group__gpio.js lib/sdk/Documentation/html/group__gpio.js +2 -0
- lib/sdk/Documentation/html/max32665_8h_source.html lib/sdk/Documentation/html/max32665_8h_source.html +1 -1
- lib/sdk/Documentation/html/mxc__pins_8h_source.html lib/sdk/Documentation/html/mxc__pins_8h_source.html +1 -1
- lib/sdk/Documentation/html/mxc__sys_8h_source.html lib/sdk/Documentation/html/mxc__sys_8h_source.html +3 -3
- lib/sdk/Documentation/html/navtreedata.js lib/sdk/Documentation/html/navtreedata.js +24 -24
- lib/sdk/Documentation/html/navtreeindex0.js lib/sdk/Documentation/html/navtreeindex0.js +76 -76
- lib/sdk/Documentation/html/navtreeindex1.js lib/sdk/Documentation/html/navtreeindex1.js +92 -92
- lib/sdk/Documentation/html/navtreeindex10.js lib/sdk/Documentation/html/navtreeindex10.js +39 -39
- lib/sdk/Documentation/html/navtreeindex11.js lib/sdk/Documentation/html/navtreeindex11.js +41 -41
- lib/sdk/Documentation/html/navtreeindex12.js lib/sdk/Documentation/html/navtreeindex12.js +39 -39
- lib/sdk/Documentation/html/navtreeindex13.js lib/sdk/Documentation/html/navtreeindex13.js +39 -39
- lib/sdk/Documentation/html/navtreeindex14.js lib/sdk/Documentation/html/navtreeindex14.js +39 -39
- lib/sdk/Documentation/html/navtreeindex15.js lib/sdk/Documentation/html/navtreeindex15.js +39 -39
- lib/sdk/Documentation/html/navtreeindex16.js lib/sdk/Documentation/html/navtreeindex16.js +39 -39
- lib/sdk/Documentation/html/navtreeindex17.js lib/sdk/Documentation/html/navtreeindex17.js +39 -39
- lib/sdk/Documentation/html/navtreeindex18.js lib/sdk/Documentation/html/navtreeindex18.js +39 -39
- lib/sdk/Documentation/html/navtreeindex19.js lib/sdk/Documentation/html/navtreeindex19.js +85 -85
- lib/sdk/Documentation/html/navtreeindex2.js lib/sdk/Documentation/html/navtreeindex2.js +39 -39
- lib/sdk/Documentation/html/navtreeindex20.js lib/sdk/Documentation/html/navtreeindex20.js +40 -40
- lib/sdk/Documentation/html/navtreeindex21.js lib/sdk/Documentation/html/navtreeindex21.js +40 -40
- lib/sdk/Documentation/html/navtreeindex22.js lib/sdk/Documentation/html/navtreeindex22.js +40 -40
- lib/sdk/Documentation/html/navtreeindex23.js lib/sdk/Documentation/html/navtreeindex23.js +40 -40
- lib/sdk/Documentation/html/navtreeindex24.js lib/sdk/Documentation/html/navtreeindex24.js +1 -39
- lib/sdk/Documentation/html/navtreeindex3.js lib/sdk/Documentation/html/navtreeindex3.js +39 -39
- lib/sdk/Documentation/html/navtreeindex4.js lib/sdk/Documentation/html/navtreeindex4.js +39 -39
- lib/sdk/Documentation/html/navtreeindex5.js lib/sdk/Documentation/html/navtreeindex5.js +39 -39
- lib/sdk/Documentation/html/navtreeindex6.js lib/sdk/Documentation/html/navtreeindex6.js +39 -39
- lib/sdk/Documentation/html/navtreeindex7.js lib/sdk/Documentation/html/navtreeindex7.js +39 -39
- lib/sdk/Documentation/html/navtreeindex8.js lib/sdk/Documentation/html/navtreeindex8.js +39 -39
- lib/sdk/Documentation/html/navtreeindex9.js lib/sdk/Documentation/html/navtreeindex9.js +39 -39
- lib/sdk/Documentation/html/rtc__regs_8h_source.html lib/sdk/Documentation/html/rtc__regs_8h_source.html +1 -1
- lib/sdk/Documentation/html/spixr_8h_source.html lib/sdk/Documentation/html/spixr_8h_source.html +1 -1
- lib/sdk/Documentation/html/structsys__cfg__spi17y__t.html lib/sdk/Documentation/html/structsys__cfg__spi17y__t.html +3 -0
- lib/sdk/Documentation/html/structsys__cfg__spi17y__t.js lib/sdk/Documentation/html/structsys__cfg__spi17y__t.js +2 -1
- lib/sdk/Documentation/html/uart_8h_source.html lib/sdk/Documentation/html/uart_8h_source.html +1 -1
- lib/sdk/Libraries/BTLE/btle.mk lib/sdk/Libraries/BTLE/btle.mk +10 -1
- lib/sdk/Libraries/BTLE/documentation/App_Framework_API.pdf lib/sdk/Libraries/BTLE/documentation/App_Framework_API.pdf +0 -0
- lib/sdk/Libraries/BTLE/documentation/Attribute_Protocol_API.pdf ...k/Libraries/BTLE/documentation/Attribute_Protocol_API.pdf +0 -0
- lib/sdk/Libraries/BTLE/documentation/BLE_Host_Subsystem_Qual_Certificate.pdf ...TLE/documentation/BLE_Host_Subsystem_Qual_Certificate.pdf +0 -0
- lib/sdk/Libraries/BTLE/documentation/BLE_Profile_Subsystem_Qual_Certificate.pdf .../documentation/BLE_Profile_Subsystem_Qual_Certificate.pdf +0 -0
- lib/sdk/Libraries/BTLE/documentation/Device_Manager_API.pdf lib/sdk/Libraries/BTLE/documentation/Device_Manager_API.pdf +0 -0
- lib/sdk/Libraries/BTLE/documentation/HCI_API.pdf lib/sdk/Libraries/BTLE/documentation/HCI_API.pdf +0 -0
- lib/sdk/Libraries/BTLE/documentation/L2CAP_API.pdf lib/sdk/Libraries/BTLE/documentation/L2CAP_API.pdf +0 -0
- lib/sdk/Libraries/BTLE/documentation/Profile_and_Service_API.pdf .../Libraries/BTLE/documentation/Profile_and_Service_API.pdf +0 -0
- lib/sdk/Libraries/BTLE/documentation/Sample_App_Users_Guide.pdf ...k/Libraries/BTLE/documentation/Sample_App_Users_Guide.pdf +0 -0
- lib/sdk/Libraries/BTLE/documentation/Stack_Porting_Guide.pdf lib/sdk/Libraries/BTLE/documentation/Stack_Porting_Guide.pdf +0 -0
- lib/sdk/Libraries/BTLE/documentation/Stack_Profiles_Developers_Guide.pdf ...es/BTLE/documentation/Stack_Profiles_Developers_Guide.pdf +0 -0
- lib/sdk/Libraries/BTLE/documentation/Stack_System_Architecture.pdf ...ibraries/BTLE/documentation/Stack_System_Architecture.pdf +0 -0
- lib/sdk/Libraries/BTLE/documentation/Wireless_Software_Foundation_API.pdf ...s/BTLE/documentation/Wireless_Software_Foundation_API.pdf +0 -0
- lib/sdk/Libraries/BTLE/documentation/cordio_profile_readme.md ...sdk/Libraries/BTLE/documentation/cordio_profile_readme.md +0 -150
- lib/sdk/Libraries/BTLE/documentation/cordio_stack_readme.md lib/sdk/Libraries/BTLE/documentation/cordio_stack_readme.md +0 -339
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/1__abstract_8md_source.html .../Cordio_Stack_Cordio_Profiles/1__abstract_8md_source.html +0 -135
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/Arm_Cordio.png ...entation/html/Cordio_Stack_Cordio_Profiles/Arm_Cordio.png +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/DoxygenStyleSheet.css ...n/html/Cordio_Stack_Cordio_Profiles/DoxygenStyleSheet.css +0 -1278
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/annotated.html ...entation/html/Cordio_Stack_Cordio_Profiles/annotated.html +0 -303
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/annotated.js ...umentation/html/Cordio_Stack_Cordio_Profiles/annotated.js +0 -161
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/anpc__api_8h.html ...ation/html/Cordio_Stack_Cordio_Profiles/anpc__api_8h.html +0 -207
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/anpc__api_8h__incl.map .../html/Cordio_Stack_Cordio_Profiles/anpc__api_8h__incl.map +0 -16
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/anpc__api_8h__incl.md5 .../html/Cordio_Stack_Cordio_Profiles/anpc__api_8h__incl.md5 +0 -1
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/anpc__api_8h__incl.png .../html/Cordio_Stack_Cordio_Profiles/anpc__api_8h__incl.png +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/anpc__api_8h_source.html ...tml/Cordio_Stack_Cordio_Profiles/anpc__api_8h_source.html +0 -151
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/app__api_8h.html ...tation/html/Cordio_Stack_Cordio_Profiles/app__api_8h.html +0 -569
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/app__api_8h__incl.map ...n/html/Cordio_Stack_Cordio_Profiles/app__api_8h__incl.map +0 -17
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/app__api_8h__incl.md5 ...n/html/Cordio_Stack_Cordio_Profiles/app__api_8h__incl.md5 +0 -1
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/app__api_8h__incl.png ...n/html/Cordio_Stack_Cordio_Profiles/app__api_8h__incl.png +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/app__api_8h_source.html ...html/Cordio_Stack_Cordio_Profiles/app__api_8h_source.html +0 -260
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/app__cfg_8h.html ...tation/html/Cordio_Stack_Cordio_Profiles/app__cfg_8h.html +0 -171
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/app__cfg_8h_source.html ...html/Cordio_Stack_Cordio_Profiles/app__cfg_8h_source.html +0 -135
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/app__db_8h.html ...ntation/html/Cordio_Stack_Cordio_Profiles/app__db_8h.html +0 -287
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/app__db_8h__dep__incl.map ...ml/Cordio_Stack_Cordio_Profiles/app__db_8h__dep__incl.map +0 -3
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/app__db_8h__dep__incl.md5 ...ml/Cordio_Stack_Cordio_Profiles/app__db_8h__dep__incl.md5 +0 -1
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/app__db_8h__dep__incl.png ...ml/Cordio_Stack_Cordio_Profiles/app__db_8h__dep__incl.png +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/app__db_8h__incl.map ...on/html/Cordio_Stack_Cordio_Profiles/app__db_8h__incl.map +0 -12
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/app__db_8h__incl.md5 ...on/html/Cordio_Stack_Cordio_Profiles/app__db_8h__incl.md5 +0 -1
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/app__db_8h__incl.png ...on/html/Cordio_Stack_Cordio_Profiles/app__db_8h__incl.png +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/app__db_8h_source.html .../html/Cordio_Stack_Cordio_Profiles/app__db_8h_source.html +0 -175
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/app__hw_8h.html ...ntation/html/Cordio_Stack_Cordio_Profiles/app__hw_8h.html +0 -222
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/app__hw_8h__dep__incl.map ...ml/Cordio_Stack_Cordio_Profiles/app__hw_8h__dep__incl.map +0 -5
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/app__hw_8h__dep__incl.md5 ...ml/Cordio_Stack_Cordio_Profiles/app__hw_8h__dep__incl.md5 +0 -1
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/app__hw_8h__dep__incl.png ...ml/Cordio_Stack_Cordio_Profiles/app__hw_8h__dep__incl.png +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/app__hw_8h_source.html .../html/Cordio_Stack_Cordio_Profiles/app__hw_8h_source.html +0 -200
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/app__param_8h.html ...tion/html/Cordio_Stack_Cordio_Profiles/app__param_8h.html +0 -165
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/app__param_8h_source.html ...ml/Cordio_Stack_Cordio_Profiles/app__param_8h_source.html +0 -141
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/app__terminal_8h.html ...n/html/Cordio_Stack_Cordio_Profiles/app__terminal_8h.html +0 -156
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/app__terminal_8h_source.html ...Cordio_Stack_Cordio_Profiles/app__terminal_8h_source.html +0 -136
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/app__ui_8h.html ...ntation/html/Cordio_Stack_Cordio_Profiles/app__ui_8h.html +0 -343
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/app__ui_8h_source.html .../html/Cordio_Stack_Cordio_Profiles/app__ui_8h_source.html +0 -205
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/arrowdown.png ...mentation/html/Cordio_Stack_Cordio_Profiles/arrowdown.png +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/arrowright.png ...entation/html/Cordio_Stack_Cordio_Profiles/arrowright.png +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/att__api_8h.html ...tation/html/Cordio_Stack_Cordio_Profiles/att__api_8h.html +0 -591
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/att__api_8h__dep__incl.map ...l/Cordio_Stack_Cordio_Profiles/att__api_8h__dep__incl.map +0 -33
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/att__api_8h__dep__incl.md5 ...l/Cordio_Stack_Cordio_Profiles/att__api_8h__dep__incl.md5 +0 -1
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/att__api_8h__dep__incl.png ...l/Cordio_Stack_Cordio_Profiles/att__api_8h__dep__incl.png +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/att__api_8h__incl.map ...n/html/Cordio_Stack_Cordio_Profiles/att__api_8h__incl.map +0 -15
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/att__api_8h__incl.md5 ...n/html/Cordio_Stack_Cordio_Profiles/att__api_8h__incl.md5 +0 -1
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/att__api_8h__incl.png ...n/html/Cordio_Stack_Cordio_Profiles/att__api_8h__incl.png +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/att__api_8h_source.html ...html/Cordio_Stack_Cordio_Profiles/att__api_8h_source.html +0 -237
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/att__defs_8h.html ...ation/html/Cordio_Stack_Cordio_Profiles/att__defs_8h.html +0 -833
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/att__defs_8h__dep__incl.map .../Cordio_Stack_Cordio_Profiles/att__defs_8h__dep__incl.map +0 -35
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/att__defs_8h__dep__incl.md5 .../Cordio_Stack_Cordio_Profiles/att__defs_8h__dep__incl.md5 +0 -1
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/att__defs_8h__dep__incl.png .../Cordio_Stack_Cordio_Profiles/att__defs_8h__dep__incl.png +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/att__defs_8h_source.html ...tml/Cordio_Stack_Cordio_Profiles/att__defs_8h_source.html +0 -135
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/att__handler_8h.html ...on/html/Cordio_Stack_Cordio_Profiles/att__handler_8h.html +0 -169
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/att__handler_8h__incl.map ...ml/Cordio_Stack_Cordio_Profiles/att__handler_8h__incl.map +0 -4
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/att__handler_8h__incl.md5 ...ml/Cordio_Stack_Cordio_Profiles/att__handler_8h__incl.md5 +0 -1
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/att__handler_8h__incl.png ...ml/Cordio_Stack_Cordio_Profiles/att__handler_8h__incl.png +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/att__handler_8h_source.html .../Cordio_Stack_Cordio_Profiles/att__handler_8h_source.html +0 -141
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/att__uuid_8h.html ...ation/html/Cordio_Stack_Cordio_Profiles/att__uuid_8h.html +0 -1778
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/att__uuid_8h__dep__incl.map .../Cordio_Stack_Cordio_Profiles/att__uuid_8h__dep__incl.map +0 -34
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/att__uuid_8h__dep__incl.md5 .../Cordio_Stack_Cordio_Profiles/att__uuid_8h__dep__incl.md5 +0 -1
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/att__uuid_8h__dep__incl.png .../Cordio_Stack_Cordio_Profiles/att__uuid_8h__dep__incl.png +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/att__uuid_8h__incl.map .../html/Cordio_Stack_Cordio_Profiles/att__uuid_8h__incl.map +0 -3
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/att__uuid_8h__incl.md5 .../html/Cordio_Stack_Cordio_Profiles/att__uuid_8h__incl.md5 +0 -1
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/att__uuid_8h__incl.png .../html/Cordio_Stack_Cordio_Profiles/att__uuid_8h__incl.png +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/att__uuid_8h_source.html ...tml/Cordio_Stack_Cordio_Profiles/att__uuid_8h_source.html +0 -273
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/bas__api_8h.html ...tation/html/Cordio_Stack_Cordio_Profiles/bas__api_8h.html +0 -200
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/bas__api_8h__incl.map ...n/html/Cordio_Stack_Cordio_Profiles/bas__api_8h__incl.map +0 -16
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/bas__api_8h__incl.md5 ...n/html/Cordio_Stack_Cordio_Profiles/bas__api_8h__incl.md5 +0 -1
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/bas__api_8h__incl.png ...n/html/Cordio_Stack_Cordio_Profiles/bas__api_8h__incl.png +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/bas__api_8h_source.html ...html/Cordio_Stack_Cordio_Profiles/bas__api_8h_source.html +0 -154
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/bc_s.png .../documentation/html/Cordio_Stack_Cordio_Profiles/bc_s.png +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/bda_8h.html ...cumentation/html/Cordio_Stack_Cordio_Profiles/bda_8h.html +0 -257
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/bda_8h__dep__incl.map ...n/html/Cordio_Stack_Cordio_Profiles/bda_8h__dep__incl.map +0 -41
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/bda_8h__dep__incl.md5 ...n/html/Cordio_Stack_Cordio_Profiles/bda_8h__dep__incl.md5 +0 -1
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/bda_8h__dep__incl.png ...n/html/Cordio_Stack_Cordio_Profiles/bda_8h__dep__incl.png +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/bda_8h_source.html ...tion/html/Cordio_Stack_Cordio_Profiles/bda_8h_source.html +0 -144
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/bdwn.png .../documentation/html/Cordio_Stack_Cordio_Profiles/bdwn.png +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/blpc__api_8h.html ...ation/html/Cordio_Stack_Cordio_Profiles/blpc__api_8h.html +0 -200
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/blpc__api_8h__incl.map .../html/Cordio_Stack_Cordio_Profiles/blpc__api_8h__incl.map +0 -16
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/blpc__api_8h__incl.md5 .../html/Cordio_Stack_Cordio_Profiles/blpc__api_8h__incl.md5 +0 -1
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/blpc__api_8h__incl.png .../html/Cordio_Stack_Cordio_Profiles/blpc__api_8h__incl.png +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/blpc__api_8h_source.html ...tml/Cordio_Stack_Cordio_Profiles/blpc__api_8h_source.html +0 -148
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/blps__api_8h.html ...ation/html/Cordio_Stack_Cordio_Profiles/blps__api_8h.html +0 -203
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/blps__api_8h__incl.map .../html/Cordio_Stack_Cordio_Profiles/blps__api_8h__incl.map +0 -16
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/blps__api_8h__incl.md5 .../html/Cordio_Stack_Cordio_Profiles/blps__api_8h__incl.md5 +0 -1
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/blps__api_8h__incl.png .../html/Cordio_Stack_Cordio_Profiles/blps__api_8h__incl.png +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/blps__api_8h_source.html ...tml/Cordio_Stack_Cordio_Profiles/blps__api_8h_source.html +0 -151
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/bstream_8h.html ...ntation/html/Cordio_Stack_Cordio_Profiles/bstream_8h.html +0 -352
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/bstream_8h__dep__incl.map ...ml/Cordio_Stack_Cordio_Profiles/bstream_8h__dep__incl.map +0 -3
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/bstream_8h__dep__incl.md5 ...ml/Cordio_Stack_Cordio_Profiles/bstream_8h__dep__incl.md5 +0 -1
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/bstream_8h__dep__incl.png ...ml/Cordio_Stack_Cordio_Profiles/bstream_8h__dep__incl.png +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/bstream_8h__incl.map ...on/html/Cordio_Stack_Cordio_Profiles/bstream_8h__incl.map +0 -3
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/bstream_8h__incl.md5 ...on/html/Cordio_Stack_Cordio_Profiles/bstream_8h__incl.md5 +0 -1
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/bstream_8h__incl.png ...on/html/Cordio_Stack_Cordio_Profiles/bstream_8h__incl.png +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/bstream_8h_source.html .../html/Cordio_Stack_Cordio_Profiles/bstream_8h_source.html +0 -142
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/calc128_8h.html ...ntation/html/Cordio_Stack_Cordio_Profiles/calc128_8h.html +0 -177
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/calc128_8h_source.html .../html/Cordio_Stack_Cordio_Profiles/calc128_8h_source.html +0 -141
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/cfg__stack_8h.html ...tion/html/Cordio_Stack_Cordio_Profiles/cfg__stack_8h.html +0 -262
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/cfg__stack_8h__dep__incl.map ...Cordio_Stack_Cordio_Profiles/cfg__stack_8h__dep__incl.map +0 -39
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/cfg__stack_8h__dep__incl.md5 ...Cordio_Stack_Cordio_Profiles/cfg__stack_8h__dep__incl.md5 +0 -1
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/cfg__stack_8h__dep__incl.png ...Cordio_Stack_Cordio_Profiles/cfg__stack_8h__dep__incl.png +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/cfg__stack_8h_source.html ...ml/Cordio_Stack_Cordio_Profiles/cfg__stack_8h_source.html +0 -136
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/classes.html ...umentation/html/Cordio_Stack_Cordio_Profiles/classes.html +0 -193
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/closed.png ...ocumentation/html/Cordio_Stack_Cordio_Profiles/closed.png +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/cpp__api_8h.html ...tation/html/Cordio_Stack_Cordio_Profiles/cpp__api_8h.html +0 -219
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/cpp__api_8h_source.html ...html/Cordio_Stack_Cordio_Profiles/cpp__api_8h_source.html +0 -143
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/crc32_8h.html ...mentation/html/Cordio_Stack_Cordio_Profiles/crc32_8h.html +0 -155
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/crc32_8h_source.html ...on/html/Cordio_Stack_Cordio_Profiles/crc32_8h_source.html +0 -138
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/cscp__api_8h.html ...ation/html/Cordio_Stack_Cordio_Profiles/cscp__api_8h.html +0 -180
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/cscp__api_8h_source.html ...tml/Cordio_Stack_Cordio_Profiles/cscp__api_8h_source.html +0 -143
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/diagram_appframework.png ...tml/Cordio_Stack_Cordio_Profiles/diagram_appframework.png +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/diagram_att.png ...ntation/html/Cordio_Stack_Cordio_Profiles/diagram_att.png +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/diagram_attc_discovery.png ...l/Cordio_Stack_Cordio_Profiles/diagram_attc_discovery.png +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/diagram_atts.png ...tation/html/Cordio_Stack_Cordio_Profiles/diagram_atts.png +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/diagram_atts_cccd.png ...n/html/Cordio_Stack_Cordio_Profiles/diagram_atts_cccd.png +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/diagram_atts_database.png ...ml/Cordio_Stack_Cordio_Profiles/diagram_atts_database.png +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/diagram_gap.png ...ntation/html/Cordio_Stack_Cordio_Profiles/diagram_gap.png +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/diagram_gatt_battsvcattr.png ...Cordio_Stack_Cordio_Profiles/diagram_gatt_battsvcattr.png +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/diagram_gatt_svcdatastruct.png ...rdio_Stack_Cordio_Profiles/diagram_gatt_svcdatastruct.png +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/diagram_gattprofiles.png ...tml/Cordio_Stack_Cordio_Profiles/diagram_gattprofiles.png +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/diagram_hci.png ...ntation/html/Cordio_Stack_Cordio_Profiles/diagram_hci.png +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/diagram_hci_topo.png ...on/html/Cordio_Stack_Cordio_Profiles/diagram_hci_topo.png +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/diagram_l2cap.png ...ation/html/Cordio_Stack_Cordio_Profiles/diagram_l2cap.png +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/diagram_l2capss.png ...ion/html/Cordio_Stack_Cordio_Profiles/diagram_l2capss.png +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/diagram_profiles_af.png ...html/Cordio_Stack_Cordio_Profiles/diagram_profiles_af.png +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/diagram_smp.png ...ntation/html/Cordio_Stack_Cordio_Profiles/diagram_smp.png +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/diagram_stack.png ...ation/html/Cordio_Stack_Cordio_Profiles/diagram_stack.png +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_000000_000046.html .../html/Cordio_Stack_Cordio_Profiles/dir_000000_000046.html +0 -131
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_000001_000002.html .../html/Cordio_Stack_Cordio_Profiles/dir_000001_000002.html +0 -131
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_000001_000043.html .../html/Cordio_Stack_Cordio_Profiles/dir_000001_000043.html +0 -131
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_000001_000046.html .../html/Cordio_Stack_Cordio_Profiles/dir_000001_000046.html +0 -131
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_000006_000000.html .../html/Cordio_Stack_Cordio_Profiles/dir_000006_000000.html +0 -131
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_000006_000046.html .../html/Cordio_Stack_Cordio_Profiles/dir_000006_000046.html +0 -131
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_000007_000000.html .../html/Cordio_Stack_Cordio_Profiles/dir_000007_000000.html +0 -131
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_000007_000046.html .../html/Cordio_Stack_Cordio_Profiles/dir_000007_000046.html +0 -131
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_000008_000000.html .../html/Cordio_Stack_Cordio_Profiles/dir_000008_000000.html +0 -131
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_000008_000006.html .../html/Cordio_Stack_Cordio_Profiles/dir_000008_000006.html +0 -131
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_000008_000046.html .../html/Cordio_Stack_Cordio_Profiles/dir_000008_000046.html +0 -131
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_000009_000000.html .../html/Cordio_Stack_Cordio_Profiles/dir_000009_000000.html +0 -131
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_000009_000006.html .../html/Cordio_Stack_Cordio_Profiles/dir_000009_000006.html +0 -131
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_000009_000042.html .../html/Cordio_Stack_Cordio_Profiles/dir_000009_000042.html +0 -131
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_000009_000046.html .../html/Cordio_Stack_Cordio_Profiles/dir_000009_000046.html +0 -131
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_000010_000000.html .../html/Cordio_Stack_Cordio_Profiles/dir_000010_000000.html +0 -131
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_000011_000000.html .../html/Cordio_Stack_Cordio_Profiles/dir_000011_000000.html +0 -131
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_000011_000046.html .../html/Cordio_Stack_Cordio_Profiles/dir_000011_000046.html +0 -131
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_000012_000000.html .../html/Cordio_Stack_Cordio_Profiles/dir_000012_000000.html +0 -131
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_000013_000000.html .../html/Cordio_Stack_Cordio_Profiles/dir_000013_000000.html +0 -131
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_000013_000046.html .../html/Cordio_Stack_Cordio_Profiles/dir_000013_000046.html +0 -131
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_000016_000000.html .../html/Cordio_Stack_Cordio_Profiles/dir_000016_000000.html +0 -131
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_000017_000000.html .../html/Cordio_Stack_Cordio_Profiles/dir_000017_000000.html +0 -131
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_000018_000000.html .../html/Cordio_Stack_Cordio_Profiles/dir_000018_000000.html +0 -131
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_000019_000000.html .../html/Cordio_Stack_Cordio_Profiles/dir_000019_000000.html +0 -131
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_000020_000000.html .../html/Cordio_Stack_Cordio_Profiles/dir_000020_000000.html +0 -131
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_000021_000006.html .../html/Cordio_Stack_Cordio_Profiles/dir_000021_000006.html +0 -131
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_000023_000000.html .../html/Cordio_Stack_Cordio_Profiles/dir_000023_000000.html +0 -131
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_000024_000000.html .../html/Cordio_Stack_Cordio_Profiles/dir_000024_000000.html +0 -131
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_000024_000046.html .../html/Cordio_Stack_Cordio_Profiles/dir_000024_000046.html +0 -131
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_000025_000000.html .../html/Cordio_Stack_Cordio_Profiles/dir_000025_000000.html +0 -131
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_000026_000000.html .../html/Cordio_Stack_Cordio_Profiles/dir_000026_000000.html +0 -131
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_000026_000046.html .../html/Cordio_Stack_Cordio_Profiles/dir_000026_000046.html +0 -131
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_000028_000000.html .../html/Cordio_Stack_Cordio_Profiles/dir_000028_000000.html +0 -131
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_000029_000000.html .../html/Cordio_Stack_Cordio_Profiles/dir_000029_000000.html +0 -131
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_000030_000006.html .../html/Cordio_Stack_Cordio_Profiles/dir_000030_000006.html +0 -131
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_000032_000000.html .../html/Cordio_Stack_Cordio_Profiles/dir_000032_000000.html +0 -131
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_000033_000046.html .../html/Cordio_Stack_Cordio_Profiles/dir_000033_000046.html +0 -131
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_000034_000000.html .../html/Cordio_Stack_Cordio_Profiles/dir_000034_000000.html +0 -131
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_000035_000000.html .../html/Cordio_Stack_Cordio_Profiles/dir_000035_000000.html +0 -131
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_000036_000000.html .../html/Cordio_Stack_Cordio_Profiles/dir_000036_000000.html +0 -131
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_000036_000042.html .../html/Cordio_Stack_Cordio_Profiles/dir_000036_000042.html +0 -131
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_000036_000046.html .../html/Cordio_Stack_Cordio_Profiles/dir_000036_000046.html +0 -131
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_000038_000000.html .../html/Cordio_Stack_Cordio_Profiles/dir_000038_000000.html +0 -131
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_000038_000027.html .../html/Cordio_Stack_Cordio_Profiles/dir_000038_000027.html +0 -131
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_000039_000000.html .../html/Cordio_Stack_Cordio_Profiles/dir_000039_000000.html +0 -131
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_000040_000000.html .../html/Cordio_Stack_Cordio_Profiles/dir_000040_000000.html +0 -131
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_000041_000000.html .../html/Cordio_Stack_Cordio_Profiles/dir_000041_000000.html +0 -131
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_000041_000046.html .../html/Cordio_Stack_Cordio_Profiles/dir_000041_000046.html +0 -131
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_000042_000000.html .../html/Cordio_Stack_Cordio_Profiles/dir_000042_000000.html +0 -131
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_000042_000009.html .../html/Cordio_Stack_Cordio_Profiles/dir_000042_000009.html +0 -131
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_000042_000027.html .../html/Cordio_Stack_Cordio_Profiles/dir_000042_000027.html +0 -131
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_000042_000046.html .../html/Cordio_Stack_Cordio_Profiles/dir_000042_000046.html +0 -131
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_01fd9461b2b9cb822fcd1cc455958049.html ...Cordio_Profiles/dir_01fd9461b2b9cb822fcd1cc455958049.html +0 -153
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_01fd9461b2b9cb822fcd1cc455958049_dep.map ...dio_Profiles/dir_01fd9461b2b9cb822fcd1cc455958049_dep.map +0 -6
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_01fd9461b2b9cb822fcd1cc455958049_dep.md5 ...dio_Profiles/dir_01fd9461b2b9cb822fcd1cc455958049_dep.md5 +0 -1
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_01fd9461b2b9cb822fcd1cc455958049_dep.png ...dio_Profiles/dir_01fd9461b2b9cb822fcd1cc455958049_dep.png +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_0650746a0f39978eb6a359493bea921f.html ...Cordio_Profiles/dir_0650746a0f39978eb6a359493bea921f.html +0 -153
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_0650746a0f39978eb6a359493bea921f_dep.map ...dio_Profiles/dir_0650746a0f39978eb6a359493bea921f_dep.map +0 -6
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_0650746a0f39978eb6a359493bea921f_dep.md5 ...dio_Profiles/dir_0650746a0f39978eb6a359493bea921f_dep.md5 +0 -1
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_0650746a0f39978eb6a359493bea921f_dep.png ...dio_Profiles/dir_0650746a0f39978eb6a359493bea921f_dep.png +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_083dd6bb20cdc21d6377a2c8f404db01.html ...Cordio_Profiles/dir_083dd6bb20cdc21d6377a2c8f404db01.html +0 -142
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_14240524c92faaaceebe060377e88921.html ...Cordio_Profiles/dir_14240524c92faaaceebe060377e88921.html +0 -142
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_1968977382820ccc9307df87bd9a655a.html ...Cordio_Profiles/dir_1968977382820ccc9307df87bd9a655a.html +0 -153
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_1968977382820ccc9307df87bd9a655a_dep.map ...dio_Profiles/dir_1968977382820ccc9307df87bd9a655a_dep.map +0 -6
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_1968977382820ccc9307df87bd9a655a_dep.md5 ...dio_Profiles/dir_1968977382820ccc9307df87bd9a655a_dep.md5 +0 -1
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_1968977382820ccc9307df87bd9a655a_dep.png ...dio_Profiles/dir_1968977382820ccc9307df87bd9a655a_dep.png +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_1d2c147e5b33cac31c32dee8eba74f92.html ...Cordio_Profiles/dir_1d2c147e5b33cac31c32dee8eba74f92.html +0 -153
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_1d2c147e5b33cac31c32dee8eba74f92_dep.map ...dio_Profiles/dir_1d2c147e5b33cac31c32dee8eba74f92_dep.map +0 -6
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_1d2c147e5b33cac31c32dee8eba74f92_dep.md5 ...dio_Profiles/dir_1d2c147e5b33cac31c32dee8eba74f92_dep.md5 +0 -1
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_1d2c147e5b33cac31c32dee8eba74f92_dep.png ...dio_Profiles/dir_1d2c147e5b33cac31c32dee8eba74f92_dep.png +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_2193f026831cdcfbe5f7630d525d29a2.html ...Cordio_Profiles/dir_2193f026831cdcfbe5f7630d525d29a2.html +0 -142
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_2448ffd17b33850a59249216ac62359d.html ...Cordio_Profiles/dir_2448ffd17b33850a59249216ac62359d.html +0 -142
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_24e52f82d660f93e0745d24e71239de7.html ...Cordio_Profiles/dir_24e52f82d660f93e0745d24e71239de7.html +0 -153
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_24e52f82d660f93e0745d24e71239de7_dep.map ...dio_Profiles/dir_24e52f82d660f93e0745d24e71239de7_dep.map +0 -6
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_24e52f82d660f93e0745d24e71239de7_dep.md5 ...dio_Profiles/dir_24e52f82d660f93e0745d24e71239de7_dep.md5 +0 -1
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_24e52f82d660f93e0745d24e71239de7_dep.png ...dio_Profiles/dir_24e52f82d660f93e0745d24e71239de7_dep.png +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_267301a7818b265e178dd1678b5be7da.html ...Cordio_Profiles/dir_267301a7818b265e178dd1678b5be7da.html +0 -153
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_267301a7818b265e178dd1678b5be7da_dep.map ...dio_Profiles/dir_267301a7818b265e178dd1678b5be7da_dep.map +0 -6
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_267301a7818b265e178dd1678b5be7da_dep.md5 ...dio_Profiles/dir_267301a7818b265e178dd1678b5be7da_dep.md5 +0 -1
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_267301a7818b265e178dd1678b5be7da_dep.png ...dio_Profiles/dir_267301a7818b265e178dd1678b5be7da_dep.png +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_27545987a30c1ce2d7af2bd86c78ac21.html ...Cordio_Profiles/dir_27545987a30c1ce2d7af2bd86c78ac21.html +0 -163
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_27545987a30c1ce2d7af2bd86c78ac21_dep.map ...dio_Profiles/dir_27545987a30c1ce2d7af2bd86c78ac21_dep.map +0 -13
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_27545987a30c1ce2d7af2bd86c78ac21_dep.md5 ...dio_Profiles/dir_27545987a30c1ce2d7af2bd86c78ac21_dep.md5 +0 -1
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_27545987a30c1ce2d7af2bd86c78ac21_dep.png ...dio_Profiles/dir_27545987a30c1ce2d7af2bd86c78ac21_dep.png +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_28e746fa2b2d847c24c15cb9cf47061c.html ...Cordio_Profiles/dir_28e746fa2b2d847c24c15cb9cf47061c.html +0 -156
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_28e746fa2b2d847c24c15cb9cf47061c_dep.map ...dio_Profiles/dir_28e746fa2b2d847c24c15cb9cf47061c_dep.map +0 -6
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_28e746fa2b2d847c24c15cb9cf47061c_dep.md5 ...dio_Profiles/dir_28e746fa2b2d847c24c15cb9cf47061c_dep.md5 +0 -1
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_28e746fa2b2d847c24c15cb9cf47061c_dep.png ...dio_Profiles/dir_28e746fa2b2d847c24c15cb9cf47061c_dep.png +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_2e1d5ae6e89575640b5c11b2b0dd7828.html ...Cordio_Profiles/dir_2e1d5ae6e89575640b5c11b2b0dd7828.html +0 -154
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_2e1d5ae6e89575640b5c11b2b0dd7828_dep.map ...dio_Profiles/dir_2e1d5ae6e89575640b5c11b2b0dd7828_dep.map +0 -10
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_2e1d5ae6e89575640b5c11b2b0dd7828_dep.md5 ...dio_Profiles/dir_2e1d5ae6e89575640b5c11b2b0dd7828_dep.md5 +0 -1
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_2e1d5ae6e89575640b5c11b2b0dd7828_dep.png ...dio_Profiles/dir_2e1d5ae6e89575640b5c11b2b0dd7828_dep.png +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_35094516b35a914485489400265ef606.html ...Cordio_Profiles/dir_35094516b35a914485489400265ef606.html +0 -153
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_35094516b35a914485489400265ef606_dep.map ...dio_Profiles/dir_35094516b35a914485489400265ef606_dep.map +0 -6
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_35094516b35a914485489400265ef606_dep.md5 ...dio_Profiles/dir_35094516b35a914485489400265ef606_dep.md5 +0 -1
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_35094516b35a914485489400265ef606_dep.png ...dio_Profiles/dir_35094516b35a914485489400265ef606_dep.png +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_39966f1b23fb9119d0e2e84328c29c92.html ...Cordio_Profiles/dir_39966f1b23fb9119d0e2e84328c29c92.html +0 -149
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_39966f1b23fb9119d0e2e84328c29c92_dep.map ...dio_Profiles/dir_39966f1b23fb9119d0e2e84328c29c92_dep.map +0 -5
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_39966f1b23fb9119d0e2e84328c29c92_dep.md5 ...dio_Profiles/dir_39966f1b23fb9119d0e2e84328c29c92_dep.md5 +0 -1
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_39966f1b23fb9119d0e2e84328c29c92_dep.png ...dio_Profiles/dir_39966f1b23fb9119d0e2e84328c29c92_dep.png +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_3af3f687dce0018c3eca5f89eed04794.html ...Cordio_Profiles/dir_3af3f687dce0018c3eca5f89eed04794.html +0 -153
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_3af3f687dce0018c3eca5f89eed04794_dep.map ...dio_Profiles/dir_3af3f687dce0018c3eca5f89eed04794_dep.map +0 -6
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_3af3f687dce0018c3eca5f89eed04794_dep.md5 ...dio_Profiles/dir_3af3f687dce0018c3eca5f89eed04794_dep.md5 +0 -1
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_3af3f687dce0018c3eca5f89eed04794_dep.png ...dio_Profiles/dir_3af3f687dce0018c3eca5f89eed04794_dep.png +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_3b413abaffb582733343166118210417.html ...Cordio_Profiles/dir_3b413abaffb582733343166118210417.html +0 -163
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_3b413abaffb582733343166118210417_dep.map ...dio_Profiles/dir_3b413abaffb582733343166118210417_dep.map +0 -19
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_3b413abaffb582733343166118210417_dep.md5 ...dio_Profiles/dir_3b413abaffb582733343166118210417_dep.md5 +0 -1
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_3b413abaffb582733343166118210417_dep.png ...dio_Profiles/dir_3b413abaffb582733343166118210417_dep.png +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_3e32500b9eb36cf42c63d7a0700b5f48.html ...Cordio_Profiles/dir_3e32500b9eb36cf42c63d7a0700b5f48.html +0 -139
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_4b2efa8dde6080c56d9829d057fd39df.html ...Cordio_Profiles/dir_4b2efa8dde6080c56d9829d057fd39df.html +0 -139
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_4f486d1e72826ae9c58bf305b51ae16e.html ...Cordio_Profiles/dir_4f486d1e72826ae9c58bf305b51ae16e.html +0 -156
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_4f486d1e72826ae9c58bf305b51ae16e_dep.map ...dio_Profiles/dir_4f486d1e72826ae9c58bf305b51ae16e_dep.map +0 -9
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_4f486d1e72826ae9c58bf305b51ae16e_dep.md5 ...dio_Profiles/dir_4f486d1e72826ae9c58bf305b51ae16e_dep.md5 +0 -1
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_4f486d1e72826ae9c58bf305b51ae16e_dep.png ...dio_Profiles/dir_4f486d1e72826ae9c58bf305b51ae16e_dep.png +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_5cf26327824e451e1022868dc841ad11.html ...Cordio_Profiles/dir_5cf26327824e451e1022868dc841ad11.html +0 -153
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_5cf26327824e451e1022868dc841ad11_dep.map ...dio_Profiles/dir_5cf26327824e451e1022868dc841ad11_dep.map +0 -6
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_5cf26327824e451e1022868dc841ad11_dep.md5 ...dio_Profiles/dir_5cf26327824e451e1022868dc841ad11_dep.md5 +0 -1
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_5cf26327824e451e1022868dc841ad11_dep.png ...dio_Profiles/dir_5cf26327824e451e1022868dc841ad11_dep.png +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_64d72f811608cc5536d7defd83dd8929.html ...Cordio_Profiles/dir_64d72f811608cc5536d7defd83dd8929.html +0 -153
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_64d72f811608cc5536d7defd83dd8929_dep.map ...dio_Profiles/dir_64d72f811608cc5536d7defd83dd8929_dep.map +0 -6
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_64d72f811608cc5536d7defd83dd8929_dep.md5 ...dio_Profiles/dir_64d72f811608cc5536d7defd83dd8929_dep.md5 +0 -1
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_64d72f811608cc5536d7defd83dd8929_dep.png ...dio_Profiles/dir_64d72f811608cc5536d7defd83dd8929_dep.png +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_6a5ce93f472888e0793f2844156cb0e2.html ...Cordio_Profiles/dir_6a5ce93f472888e0793f2844156cb0e2.html +0 -156
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_6a5ce93f472888e0793f2844156cb0e2_dep.map ...dio_Profiles/dir_6a5ce93f472888e0793f2844156cb0e2_dep.map +0 -9
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_6a5ce93f472888e0793f2844156cb0e2_dep.md5 ...dio_Profiles/dir_6a5ce93f472888e0793f2844156cb0e2_dep.md5 +0 -1
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_6a5ce93f472888e0793f2844156cb0e2_dep.png ...dio_Profiles/dir_6a5ce93f472888e0793f2844156cb0e2_dep.png +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_7108d5013b197beb2004eacb657ed2e6.html ...Cordio_Profiles/dir_7108d5013b197beb2004eacb657ed2e6.html +0 -153
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_7108d5013b197beb2004eacb657ed2e6_dep.map ...dio_Profiles/dir_7108d5013b197beb2004eacb657ed2e6_dep.map +0 -6
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_7108d5013b197beb2004eacb657ed2e6_dep.md5 ...dio_Profiles/dir_7108d5013b197beb2004eacb657ed2e6_dep.md5 +0 -1
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_7108d5013b197beb2004eacb657ed2e6_dep.png ...dio_Profiles/dir_7108d5013b197beb2004eacb657ed2e6_dep.png +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_72413f27bc6a06dcd8eb07a15b445fac.html ...Cordio_Profiles/dir_72413f27bc6a06dcd8eb07a15b445fac.html +0 -142
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_7474d848c2a75fd8baba724a49ab5497.html ...Cordio_Profiles/dir_7474d848c2a75fd8baba724a49ab5497.html +0 -154
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_7474d848c2a75fd8baba724a49ab5497_dep.map ...dio_Profiles/dir_7474d848c2a75fd8baba724a49ab5497_dep.map +0 -10
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_7474d848c2a75fd8baba724a49ab5497_dep.md5 ...dio_Profiles/dir_7474d848c2a75fd8baba724a49ab5497_dep.md5 +0 -1
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_7474d848c2a75fd8baba724a49ab5497_dep.png ...dio_Profiles/dir_7474d848c2a75fd8baba724a49ab5497_dep.png +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_7491aafc6772ac0317b005e79579b936.html ...Cordio_Profiles/dir_7491aafc6772ac0317b005e79579b936.html +0 -139
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_777b5b972e7bb8c05bd1df2cd2c64fa8.html ...Cordio_Profiles/dir_777b5b972e7bb8c05bd1df2cd2c64fa8.html +0 -156
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_777b5b972e7bb8c05bd1df2cd2c64fa8_dep.map ...dio_Profiles/dir_777b5b972e7bb8c05bd1df2cd2c64fa8_dep.map +0 -9
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_777b5b972e7bb8c05bd1df2cd2c64fa8_dep.md5 ...dio_Profiles/dir_777b5b972e7bb8c05bd1df2cd2c64fa8_dep.md5 +0 -1
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_777b5b972e7bb8c05bd1df2cd2c64fa8_dep.png ...dio_Profiles/dir_777b5b972e7bb8c05bd1df2cd2c64fa8_dep.png +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_792ecca4f12bd5a21f99abff978ab3e7.html ...Cordio_Profiles/dir_792ecca4f12bd5a21f99abff978ab3e7.html +0 -174
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_792ecca4f12bd5a21f99abff978ab3e7_dep.map ...dio_Profiles/dir_792ecca4f12bd5a21f99abff978ab3e7_dep.map +0 -9
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_792ecca4f12bd5a21f99abff978ab3e7_dep.md5 ...dio_Profiles/dir_792ecca4f12bd5a21f99abff978ab3e7_dep.md5 +0 -1
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_792ecca4f12bd5a21f99abff978ab3e7_dep.png ...dio_Profiles/dir_792ecca4f12bd5a21f99abff978ab3e7_dep.png +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_7975def220458f17c7281fab566ce246.html ...Cordio_Profiles/dir_7975def220458f17c7281fab566ce246.html +0 -156
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_7975def220458f17c7281fab566ce246_dep.map ...dio_Profiles/dir_7975def220458f17c7281fab566ce246_dep.map +0 -9
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_7975def220458f17c7281fab566ce246_dep.md5 ...dio_Profiles/dir_7975def220458f17c7281fab566ce246_dep.md5 +0 -1
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_7975def220458f17c7281fab566ce246_dep.png ...dio_Profiles/dir_7975def220458f17c7281fab566ce246_dep.png +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_7bfed3e367d92941728cc185aee9127b.html ...Cordio_Profiles/dir_7bfed3e367d92941728cc185aee9127b.html +0 -161
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_7bfed3e367d92941728cc185aee9127b_dep.map ...dio_Profiles/dir_7bfed3e367d92941728cc185aee9127b_dep.map +0 -8
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_7bfed3e367d92941728cc185aee9127b_dep.md5 ...dio_Profiles/dir_7bfed3e367d92941728cc185aee9127b_dep.md5 +0 -1
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_7bfed3e367d92941728cc185aee9127b_dep.png ...dio_Profiles/dir_7bfed3e367d92941728cc185aee9127b_dep.png +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_84e488d8a84e65c3c9b677a5dd7a953b.html ...Cordio_Profiles/dir_84e488d8a84e65c3c9b677a5dd7a953b.html +0 -156
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_84e488d8a84e65c3c9b677a5dd7a953b_dep.map ...dio_Profiles/dir_84e488d8a84e65c3c9b677a5dd7a953b_dep.map +0 -6
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_84e488d8a84e65c3c9b677a5dd7a953b_dep.md5 ...dio_Profiles/dir_84e488d8a84e65c3c9b677a5dd7a953b_dep.md5 +0 -1
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_84e488d8a84e65c3c9b677a5dd7a953b_dep.png ...dio_Profiles/dir_84e488d8a84e65c3c9b677a5dd7a953b_dep.png +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_8d20de1f413d615a571d8da343a68b55.html ...Cordio_Profiles/dir_8d20de1f413d615a571d8da343a68b55.html +0 -225
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_8d20de1f413d615a571d8da343a68b55_dep.map ...dio_Profiles/dir_8d20de1f413d615a571d8da343a68b55_dep.map +0 -81
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_8d20de1f413d615a571d8da343a68b55_dep.md5 ...dio_Profiles/dir_8d20de1f413d615a571d8da343a68b55_dep.md5 +0 -1
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_8d20de1f413d615a571d8da343a68b55_dep.png ...dio_Profiles/dir_8d20de1f413d615a571d8da343a68b55_dep.png +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_91857b504f82a56ca001dd341fe65f25.html ...Cordio_Profiles/dir_91857b504f82a56ca001dd341fe65f25.html +0 -153
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_91857b504f82a56ca001dd341fe65f25_dep.map ...dio_Profiles/dir_91857b504f82a56ca001dd341fe65f25_dep.map +0 -6
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_91857b504f82a56ca001dd341fe65f25_dep.md5 ...dio_Profiles/dir_91857b504f82a56ca001dd341fe65f25_dep.md5 +0 -1
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_91857b504f82a56ca001dd341fe65f25_dep.png ...dio_Profiles/dir_91857b504f82a56ca001dd341fe65f25_dep.png +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_9c6c1d5b688df0f8e1edfb086967f595.html ...Cordio_Profiles/dir_9c6c1d5b688df0f8e1edfb086967f595.html +0 -153
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_9c6c1d5b688df0f8e1edfb086967f595_dep.map ...dio_Profiles/dir_9c6c1d5b688df0f8e1edfb086967f595_dep.map +0 -6
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_9c6c1d5b688df0f8e1edfb086967f595_dep.md5 ...dio_Profiles/dir_9c6c1d5b688df0f8e1edfb086967f595_dep.md5 +0 -1
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_9c6c1d5b688df0f8e1edfb086967f595_dep.png ...dio_Profiles/dir_9c6c1d5b688df0f8e1edfb086967f595_dep.png +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_9cd61716eb232fce02341fdda60380b1.html ...Cordio_Profiles/dir_9cd61716eb232fce02341fdda60380b1.html +0 -185
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_9cd61716eb232fce02341fdda60380b1_dep.map ...dio_Profiles/dir_9cd61716eb232fce02341fdda60380b1_dep.map +0 -5
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_9cd61716eb232fce02341fdda60380b1_dep.md5 ...dio_Profiles/dir_9cd61716eb232fce02341fdda60380b1_dep.md5 +0 -1
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_9cd61716eb232fce02341fdda60380b1_dep.png ...dio_Profiles/dir_9cd61716eb232fce02341fdda60380b1_dep.png +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_9ee610406381032583c9b2ea366d83ef.html ...Cordio_Profiles/dir_9ee610406381032583c9b2ea366d83ef.html +0 -214
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_9ee610406381032583c9b2ea366d83ef_dep.map ...dio_Profiles/dir_9ee610406381032583c9b2ea366d83ef_dep.map +0 -10
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_9ee610406381032583c9b2ea366d83ef_dep.md5 ...dio_Profiles/dir_9ee610406381032583c9b2ea366d83ef_dep.md5 +0 -1
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_9ee610406381032583c9b2ea366d83ef_dep.png ...dio_Profiles/dir_9ee610406381032583c9b2ea366d83ef_dep.png +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_a946ce966c8139b039e16cc0d63039c1.html ...Cordio_Profiles/dir_a946ce966c8139b039e16cc0d63039c1.html +0 -157
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_a946ce966c8139b039e16cc0d63039c1_dep.map ...dio_Profiles/dir_a946ce966c8139b039e16cc0d63039c1_dep.map +0 -13
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_a946ce966c8139b039e16cc0d63039c1_dep.md5 ...dio_Profiles/dir_a946ce966c8139b039e16cc0d63039c1_dep.md5 +0 -1
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_a946ce966c8139b039e16cc0d63039c1_dep.png ...dio_Profiles/dir_a946ce966c8139b039e16cc0d63039c1_dep.png +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_aec2dea080396ad70937fe545ac403b0.html ...Cordio_Profiles/dir_aec2dea080396ad70937fe545ac403b0.html +0 -142
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_afde2436970dac88923b1f77403d2006.html ...Cordio_Profiles/dir_afde2436970dac88923b1f77403d2006.html +0 -153
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_afde2436970dac88923b1f77403d2006_dep.map ...dio_Profiles/dir_afde2436970dac88923b1f77403d2006_dep.map +0 -6
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_afde2436970dac88923b1f77403d2006_dep.md5 ...dio_Profiles/dir_afde2436970dac88923b1f77403d2006_dep.md5 +0 -1
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_afde2436970dac88923b1f77403d2006_dep.png ...dio_Profiles/dir_afde2436970dac88923b1f77403d2006_dep.png +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_b396dc28dbe644a9444597cdccdfe82e.html ...Cordio_Profiles/dir_b396dc28dbe644a9444597cdccdfe82e.html +0 -169
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_b396dc28dbe644a9444597cdccdfe82e_dep.map ...dio_Profiles/dir_b396dc28dbe644a9444597cdccdfe82e_dep.map +0 -4
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_b396dc28dbe644a9444597cdccdfe82e_dep.md5 ...dio_Profiles/dir_b396dc28dbe644a9444597cdccdfe82e_dep.md5 +0 -1
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_b396dc28dbe644a9444597cdccdfe82e_dep.png ...dio_Profiles/dir_b396dc28dbe644a9444597cdccdfe82e_dep.png +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_bd209c9d3074d3795b66a9dd59ecf791.html ...Cordio_Profiles/dir_bd209c9d3074d3795b66a9dd59ecf791.html +0 -156
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_bd209c9d3074d3795b66a9dd59ecf791_dep.map ...dio_Profiles/dir_bd209c9d3074d3795b66a9dd59ecf791_dep.map +0 -6
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_bd209c9d3074d3795b66a9dd59ecf791_dep.md5 ...dio_Profiles/dir_bd209c9d3074d3795b66a9dd59ecf791_dep.md5 +0 -1
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_bd209c9d3074d3795b66a9dd59ecf791_dep.png ...dio_Profiles/dir_bd209c9d3074d3795b66a9dd59ecf791_dep.png +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_c5a52a81292cf9a5167198f4f346d6d9.html ...Cordio_Profiles/dir_c5a52a81292cf9a5167198f4f346d6d9.html +0 -139
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_cc534d0ae49bf8e5d6f4ee87a58ea916.html ...Cordio_Profiles/dir_cc534d0ae49bf8e5d6f4ee87a58ea916.html +0 -153
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_cc534d0ae49bf8e5d6f4ee87a58ea916_dep.map ...dio_Profiles/dir_cc534d0ae49bf8e5d6f4ee87a58ea916_dep.map +0 -6
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_cc534d0ae49bf8e5d6f4ee87a58ea916_dep.md5 ...dio_Profiles/dir_cc534d0ae49bf8e5d6f4ee87a58ea916_dep.md5 +0 -1
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_cc534d0ae49bf8e5d6f4ee87a58ea916_dep.png ...dio_Profiles/dir_cc534d0ae49bf8e5d6f4ee87a58ea916_dep.png +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_d80f2d3e4e836961689c466eb7625f53.html ...Cordio_Profiles/dir_d80f2d3e4e836961689c466eb7625f53.html +0 -153
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_d80f2d3e4e836961689c466eb7625f53_dep.map ...dio_Profiles/dir_d80f2d3e4e836961689c466eb7625f53_dep.map +0 -6
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_d80f2d3e4e836961689c466eb7625f53_dep.md5 ...dio_Profiles/dir_d80f2d3e4e836961689c466eb7625f53_dep.md5 +0 -1
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_d80f2d3e4e836961689c466eb7625f53_dep.png ...dio_Profiles/dir_d80f2d3e4e836961689c466eb7625f53_dep.png +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_dcada09bf3de69beabc0521b91c30550.html ...Cordio_Profiles/dir_dcada09bf3de69beabc0521b91c30550.html +0 -142
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_e4413fdd10501f0f4b65f615de72d05f.html ...Cordio_Profiles/dir_e4413fdd10501f0f4b65f615de72d05f.html +0 -139
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_e5afad07a6e294c18dad619513d97382.html ...Cordio_Profiles/dir_e5afad07a6e294c18dad619513d97382.html +0 -145
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_e8bf73041848d8a97ff9b0f24e24824e.html ...Cordio_Profiles/dir_e8bf73041848d8a97ff9b0f24e24824e.html +0 -232
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_e8bf73041848d8a97ff9b0f24e24824e_dep.map ...dio_Profiles/dir_e8bf73041848d8a97ff9b0f24e24824e_dep.map +0 -13
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_e8bf73041848d8a97ff9b0f24e24824e_dep.md5 ...dio_Profiles/dir_e8bf73041848d8a97ff9b0f24e24824e_dep.md5 +0 -1
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_e8bf73041848d8a97ff9b0f24e24824e_dep.png ...dio_Profiles/dir_e8bf73041848d8a97ff9b0f24e24824e_dep.png +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_ebd89e2215d9fe75dd049fd7977024ba.html ...Cordio_Profiles/dir_ebd89e2215d9fe75dd049fd7977024ba.html +0 -156
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_ebd89e2215d9fe75dd049fd7977024ba_dep.map ...dio_Profiles/dir_ebd89e2215d9fe75dd049fd7977024ba_dep.map +0 -9
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_ebd89e2215d9fe75dd049fd7977024ba_dep.md5 ...dio_Profiles/dir_ebd89e2215d9fe75dd049fd7977024ba_dep.md5 +0 -1
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_ebd89e2215d9fe75dd049fd7977024ba_dep.png ...dio_Profiles/dir_ebd89e2215d9fe75dd049fd7977024ba_dep.png +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dis__api_8h.html ...tation/html/Cordio_Stack_Cordio_Profiles/dis__api_8h.html +0 -204
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dis__api_8h__incl.map ...n/html/Cordio_Stack_Cordio_Profiles/dis__api_8h__incl.map +0 -16
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dis__api_8h__incl.md5 ...n/html/Cordio_Stack_Cordio_Profiles/dis__api_8h__incl.md5 +0 -1
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dis__api_8h__incl.png ...n/html/Cordio_Stack_Cordio_Profiles/dis__api_8h__incl.png +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dis__api_8h_source.html ...html/Cordio_Stack_Cordio_Profiles/dis__api_8h_source.html +0 -150
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dm__api_8h.html ...ntation/html/Cordio_Stack_Cordio_Profiles/dm__api_8h.html +0 -1583
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dm__api_8h__dep__incl.map ...ml/Cordio_Stack_Cordio_Profiles/dm__api_8h__dep__incl.map +0 -37
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dm__api_8h__dep__incl.md5 ...ml/Cordio_Stack_Cordio_Profiles/dm__api_8h__dep__incl.md5 +0 -1
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dm__api_8h__dep__incl.png ...ml/Cordio_Stack_Cordio_Profiles/dm__api_8h__dep__incl.png +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dm__api_8h__incl.map ...on/html/Cordio_Stack_Cordio_Profiles/dm__api_8h__incl.map +0 -11
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dm__api_8h__incl.md5 ...on/html/Cordio_Stack_Cordio_Profiles/dm__api_8h__incl.md5 +0 -1
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dm__api_8h__incl.png ...on/html/Cordio_Stack_Cordio_Profiles/dm__api_8h__incl.png +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dm__api_8h_source.html .../html/Cordio_Stack_Cordio_Profiles/dm__api_8h_source.html +0 -477
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dm__handler_8h.html ...ion/html/Cordio_Stack_Cordio_Profiles/dm__handler_8h.html +0 -169
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dm__handler_8h__incl.map ...tml/Cordio_Stack_Cordio_Profiles/dm__handler_8h__incl.map +0 -4
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dm__handler_8h__incl.md5 ...tml/Cordio_Stack_Cordio_Profiles/dm__handler_8h__incl.md5 +0 -1
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dm__handler_8h__incl.png ...tml/Cordio_Stack_Cordio_Profiles/dm__handler_8h__incl.png +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dm__handler_8h_source.html ...l/Cordio_Stack_Cordio_Profiles/dm__handler_8h_source.html +0 -141
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/doc.png ...E/documentation/html/Cordio_Stack_Cordio_Profiles/doc.png +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dot_inline_dotgraph_1.png ...ml/Cordio_Stack_Cordio_Profiles/dot_inline_dotgraph_1.png +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dot_inline_dotgraph_2.png ...ml/Cordio_Stack_Cordio_Profiles/dot_inline_dotgraph_2.png +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dot_inline_dotgraph_3.png ...ml/Cordio_Stack_Cordio_Profiles/dot_inline_dotgraph_3.png +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dot_inline_dotgraph_4.png ...ml/Cordio_Stack_Cordio_Profiles/dot_inline_dotgraph_4.png +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dot_inline_dotgraph_5.png ...ml/Cordio_Stack_Cordio_Profiles/dot_inline_dotgraph_5.png +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dot_inline_dotgraph_6.png ...ml/Cordio_Stack_Cordio_Profiles/dot_inline_dotgraph_6.png +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/doxygen.css ...cumentation/html/Cordio_Stack_Cordio_Profiles/doxygen.css +0 -1475
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/doxygen.png ...cumentation/html/Cordio_Stack_Cordio_Profiles/doxygen.png +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dynsections.js ...entation/html/Cordio_Stack_Cordio_Profiles/dynsections.js +0 -104
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/files.html ...ocumentation/html/Cordio_Stack_Cordio_Profiles/files.html +0 -300
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/fmpl__api_8h.html ...ation/html/Cordio_Stack_Cordio_Profiles/fmpl__api_8h.html +0 -192
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/fmpl__api_8h__incl.map .../html/Cordio_Stack_Cordio_Profiles/fmpl__api_8h__incl.map +0 -16
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/fmpl__api_8h__incl.md5 .../html/Cordio_Stack_Cordio_Profiles/fmpl__api_8h__incl.md5 +0 -1
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/fmpl__api_8h__incl.png .../html/Cordio_Stack_Cordio_Profiles/fmpl__api_8h__incl.png +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/fmpl__api_8h_source.html ...tml/Cordio_Stack_Cordio_Profiles/fmpl__api_8h_source.html +0 -143
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/folderclosed.png ...tation/html/Cordio_Stack_Cordio_Profiles/folderclosed.png +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/folderopen.png ...entation/html/Cordio_Stack_Cordio_Profiles/folderopen.png +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/functions.html ...entation/html/Cordio_Stack_Cordio_Profiles/functions.html +0 -325
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/functions_b.html ...tation/html/Cordio_Stack_Cordio_Profiles/functions_b.html +0 -190
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/functions_c.html ...tation/html/Cordio_Stack_Cordio_Profiles/functions_c.html +0 -277
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/functions_d.html ...tation/html/Cordio_Stack_Cordio_Profiles/functions_d.html +0 -247
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/functions_dup.js ...tation/html/Cordio_Stack_Cordio_Profiles/functions_dup.js +0 -25
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/functions_e.html ...tation/html/Cordio_Stack_Cordio_Profiles/functions_e.html +0 -234
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/functions_f.html ...tation/html/Cordio_Stack_Cordio_Profiles/functions_f.html +0 -240
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/functions_h.html ...tation/html/Cordio_Stack_Cordio_Profiles/functions_h.html +0 -320
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/functions_i.html ...tation/html/Cordio_Stack_Cordio_Profiles/functions_i.html +0 -214
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/functions_k.html ...tation/html/Cordio_Stack_Cordio_Profiles/functions_k.html +0 -194
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/functions_l.html ...tation/html/Cordio_Stack_Cordio_Profiles/functions_l.html +0 -325
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/functions_m.html ...tation/html/Cordio_Stack_Cordio_Profiles/functions_m.html +0 -272
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/functions_n.html ...tation/html/Cordio_Stack_Cordio_Profiles/functions_n.html +0 -245
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/functions_o.html ...tation/html/Cordio_Stack_Cordio_Profiles/functions_o.html +0 -196
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/functions_p.html ...tation/html/Cordio_Stack_Cordio_Profiles/functions_p.html +0 -385
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/functions_q.html ...tation/html/Cordio_Stack_Cordio_Profiles/functions_q.html +0 -176
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/functions_r.html ...tation/html/Cordio_Stack_Cordio_Profiles/functions_r.html +0 -278
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/functions_s.html ...tation/html/Cordio_Stack_Cordio_Profiles/functions_s.html +0 -372
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/functions_t.html ...tation/html/Cordio_Stack_Cordio_Profiles/functions_t.html +0 -234
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/functions_u.html ...tation/html/Cordio_Stack_Cordio_Profiles/functions_u.html +0 -185
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/functions_v.html ...tation/html/Cordio_Stack_Cordio_Profiles/functions_v.html +0 -197
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/functions_vars.html ...ion/html/Cordio_Stack_Cordio_Profiles/functions_vars.html +0 -325
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/functions_vars.js ...ation/html/Cordio_Stack_Cordio_Profiles/functions_vars.js +0 -25
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/functions_vars_b.html ...n/html/Cordio_Stack_Cordio_Profiles/functions_vars_b.html +0 -190
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/functions_vars_c.html ...n/html/Cordio_Stack_Cordio_Profiles/functions_vars_c.html +0 -277
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/functions_vars_d.html ...n/html/Cordio_Stack_Cordio_Profiles/functions_vars_d.html +0 -247
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/functions_vars_e.html ...n/html/Cordio_Stack_Cordio_Profiles/functions_vars_e.html +0 -234
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/functions_vars_f.html ...n/html/Cordio_Stack_Cordio_Profiles/functions_vars_f.html +0 -240
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/functions_vars_h.html ...n/html/Cordio_Stack_Cordio_Profiles/functions_vars_h.html +0 -320
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/functions_vars_i.html ...n/html/Cordio_Stack_Cordio_Profiles/functions_vars_i.html +0 -214
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/functions_vars_k.html ...n/html/Cordio_Stack_Cordio_Profiles/functions_vars_k.html +0 -194
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/functions_vars_l.html ...n/html/Cordio_Stack_Cordio_Profiles/functions_vars_l.html +0 -325
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/functions_vars_m.html ...n/html/Cordio_Stack_Cordio_Profiles/functions_vars_m.html +0 -272
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/functions_vars_n.html ...n/html/Cordio_Stack_Cordio_Profiles/functions_vars_n.html +0 -245
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/functions_vars_o.html ...n/html/Cordio_Stack_Cordio_Profiles/functions_vars_o.html +0 -196
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/functions_vars_p.html ...n/html/Cordio_Stack_Cordio_Profiles/functions_vars_p.html +0 -385
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/functions_vars_q.html ...n/html/Cordio_Stack_Cordio_Profiles/functions_vars_q.html +0 -176
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/functions_vars_r.html ...n/html/Cordio_Stack_Cordio_Profiles/functions_vars_r.html +0 -278
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/functions_vars_s.html ...n/html/Cordio_Stack_Cordio_Profiles/functions_vars_s.html +0 -372
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/functions_vars_t.html ...n/html/Cordio_Stack_Cordio_Profiles/functions_vars_t.html +0 -234
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/functions_vars_u.html ...n/html/Cordio_Stack_Cordio_Profiles/functions_vars_u.html +0 -185
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/functions_vars_v.html ...n/html/Cordio_Stack_Cordio_Profiles/functions_vars_v.html +0 -197
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/functions_vars_w.html ...n/html/Cordio_Stack_Cordio_Profiles/functions_vars_w.html +0 -194
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/functions_vars_y.html ...n/html/Cordio_Stack_Cordio_Profiles/functions_vars_y.html +0 -176
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/functions_w.html ...tation/html/Cordio_Stack_Cordio_Profiles/functions_w.html +0 -194
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/functions_y.html ...tation/html/Cordio_Stack_Cordio_Profiles/functions_y.html +0 -176
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/gap__api_8h.html ...tation/html/Cordio_Stack_Cordio_Profiles/gap__api_8h.html +0 -194
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/gap__api_8h__incl.map ...n/html/Cordio_Stack_Cordio_Profiles/gap__api_8h__incl.map +0 -16
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/gap__api_8h__incl.md5 ...n/html/Cordio_Stack_Cordio_Profiles/gap__api_8h__incl.md5 +0 -1
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/gap__api_8h__incl.png ...n/html/Cordio_Stack_Cordio_Profiles/gap__api_8h__incl.png +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/gap__api_8h_source.html ...html/Cordio_Stack_Cordio_Profiles/gap__api_8h_source.html +0 -145
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/gatt__api_8h.html ...ation/html/Cordio_Stack_Cordio_Profiles/gatt__api_8h.html +0 -194
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/gatt__api_8h__incl.map .../html/Cordio_Stack_Cordio_Profiles/gatt__api_8h__incl.map +0 -16
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/gatt__api_8h__incl.md5 .../html/Cordio_Stack_Cordio_Profiles/gatt__api_8h__incl.md5 +0 -1
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/gatt__api_8h__incl.png .../html/Cordio_Stack_Cordio_Profiles/gatt__api_8h__incl.png +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/gatt__api_8h_source.html ...tml/Cordio_Stack_Cordio_Profiles/gatt__api_8h_source.html +0 -145
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/globals.html ...umentation/html/Cordio_Stack_Cordio_Profiles/globals.html +0 -2877
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/globals_b.html ...entation/html/Cordio_Stack_Cordio_Profiles/globals_b.html +0 -426
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/globals_c.html ...entation/html/Cordio_Stack_Cordio_Profiles/globals_c.html +0 -1347
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/globals_d.html ...entation/html/Cordio_Stack_Cordio_Profiles/globals_d.html +0 -1410
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/globals_defs.html ...ation/html/Cordio_Stack_Cordio_Profiles/globals_defs.html +0 -1575
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/globals_defs_b.html ...ion/html/Cordio_Stack_Cordio_Profiles/globals_defs_b.html +0 -288
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/globals_defs_c.html ...ion/html/Cordio_Stack_Cordio_Profiles/globals_defs_c.html +0 -1251
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/globals_defs_d.html ...ion/html/Cordio_Stack_Cordio_Profiles/globals_defs_d.html +0 -756
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/globals_defs_f.html ...ion/html/Cordio_Stack_Cordio_Profiles/globals_defs_f.html +0 -171
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/globals_defs_g.html ...ion/html/Cordio_Stack_Cordio_Profiles/globals_defs_g.html +0 -237
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/globals_defs_h.html ...ion/html/Cordio_Stack_Cordio_Profiles/globals_defs_h.html +0 -1692
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/globals_defs_i.html ...ion/html/Cordio_Stack_Cordio_Profiles/globals_defs_i.html +0 -171
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/globals_defs_l.html ...ion/html/Cordio_Stack_Cordio_Profiles/globals_defs_l.html +0 -438
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/globals_defs_n.html ...ion/html/Cordio_Stack_Cordio_Profiles/globals_defs_n.html +0 -168
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/globals_defs_p.html ...ion/html/Cordio_Stack_Cordio_Profiles/globals_defs_p.html +0 -192
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/globals_defs_r.html ...ion/html/Cordio_Stack_Cordio_Profiles/globals_defs_r.html +0 -210
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/globals_defs_s.html ...ion/html/Cordio_Stack_Cordio_Profiles/globals_defs_s.html +0 -486
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/globals_defs_t.html ...ion/html/Cordio_Stack_Cordio_Profiles/globals_defs_t.html +0 -225
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/globals_defs_u.html ...ion/html/Cordio_Stack_Cordio_Profiles/globals_defs_u.html +0 -306
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/globals_defs_w.html ...ion/html/Cordio_Stack_Cordio_Profiles/globals_defs_w.html +0 -774
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/globals_eval.html ...ation/html/Cordio_Stack_Cordio_Profiles/globals_eval.html +0 -494
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/globals_eval_b.html ...ion/html/Cordio_Stack_Cordio_Profiles/globals_eval_b.html +0 -227
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/globals_eval_c.html ...ion/html/Cordio_Stack_Cordio_Profiles/globals_eval_c.html +0 -218
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/globals_eval_d.html ...ion/html/Cordio_Stack_Cordio_Profiles/globals_eval_d.html +0 -407
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/globals_eval_f.html ...ion/html/Cordio_Stack_Cordio_Profiles/globals_eval_f.html +0 -170
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/globals_eval_g.html ...ion/html/Cordio_Stack_Cordio_Profiles/globals_eval_g.html +0 -338
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/globals_eval_h.html ...ion/html/Cordio_Stack_Cordio_Profiles/globals_eval_h.html +0 -365
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/globals_eval_i.html ...ion/html/Cordio_Stack_Cordio_Profiles/globals_eval_i.html +0 -179
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/globals_eval_l.html ...ion/html/Cordio_Stack_Cordio_Profiles/globals_eval_l.html +0 -185
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/globals_eval_p.html ...ion/html/Cordio_Stack_Cordio_Profiles/globals_eval_p.html +0 -248
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/globals_eval_r.html ...ion/html/Cordio_Stack_Cordio_Profiles/globals_eval_r.html +0 -191
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/globals_eval_s.html ...ion/html/Cordio_Stack_Cordio_Profiles/globals_eval_s.html +0 -266
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/globals_eval_t.html ...ion/html/Cordio_Stack_Cordio_Profiles/globals_eval_t.html +0 -293
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/globals_eval_u.html ...ion/html/Cordio_Stack_Cordio_Profiles/globals_eval_u.html +0 -269
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/globals_eval_w.html ...ion/html/Cordio_Stack_Cordio_Profiles/globals_eval_w.html +0 -290
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/globals_f.html ...entation/html/Cordio_Stack_Cordio_Profiles/globals_f.html +0 -183
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/globals_func.html ...ation/html/Cordio_Stack_Cordio_Profiles/globals_func.html +0 -700
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/globals_func_b.html ...ion/html/Cordio_Stack_Cordio_Profiles/globals_func_b.html +0 -232
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/globals_func_c.html ...ion/html/Cordio_Stack_Cordio_Profiles/globals_func_c.html +0 -202
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/globals_func_d.html ...ion/html/Cordio_Stack_Cordio_Profiles/globals_func_d.html +0 -565
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/globals_func_f.html ...ion/html/Cordio_Stack_Cordio_Profiles/globals_func_f.html +0 -169
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/globals_func_g.html ...ion/html/Cordio_Stack_Cordio_Profiles/globals_func_g.html +0 -241
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/globals_func_h.html ...ion/html/Cordio_Stack_Cordio_Profiles/globals_func_h.html +0 -652
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/globals_func_l.html ...ion/html/Cordio_Stack_Cordio_Profiles/globals_func_l.html +0 -220
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/globals_func_p.html ...ion/html/Cordio_Stack_Cordio_Profiles/globals_func_p.html +0 -229
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/globals_func_r.html ...ion/html/Cordio_Stack_Cordio_Profiles/globals_func_r.html +0 -175
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/globals_func_s.html ...ion/html/Cordio_Stack_Cordio_Profiles/globals_func_s.html +0 -448
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/globals_func_t.html ...ion/html/Cordio_Stack_Cordio_Profiles/globals_func_t.html +0 -211
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/globals_func_u.html ...ion/html/Cordio_Stack_Cordio_Profiles/globals_func_u.html +0 -211
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/globals_func_w.html ...ion/html/Cordio_Stack_Cordio_Profiles/globals_func_w.html +0 -502
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/globals_g.html ...entation/html/Cordio_Stack_Cordio_Profiles/globals_g.html +0 -489
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/globals_h.html ...entation/html/Cordio_Stack_Cordio_Profiles/globals_h.html +0 -2421
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/globals_i.html ...entation/html/Cordio_Stack_Cordio_Profiles/globals_i.html +0 -195
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/globals_l.html ...entation/html/Cordio_Stack_Cordio_Profiles/globals_l.html +0 -531
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/globals_n.html ...entation/html/Cordio_Stack_Cordio_Profiles/globals_n.html +0 -168
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/globals_p.html ...entation/html/Cordio_Stack_Cordio_Profiles/globals_p.html +0 -393
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/globals_r.html ...entation/html/Cordio_Stack_Cordio_Profiles/globals_r.html +0 -249
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/globals_s.html ...entation/html/Cordio_Stack_Cordio_Profiles/globals_s.html +0 -882
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/globals_t.html ...entation/html/Cordio_Stack_Cordio_Profiles/globals_t.html +0 -408
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/globals_type.html ...ation/html/Cordio_Stack_Cordio_Profiles/globals_type.html +0 -398
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/globals_u.html ...entation/html/Cordio_Stack_Cordio_Profiles/globals_u.html +0 -480
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/globals_vars.html ...ation/html/Cordio_Stack_Cordio_Profiles/globals_vars.html +0 -662
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/globals_w.html ...entation/html/Cordio_Stack_Cordio_Profiles/globals_w.html +0 -1326
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/glpc__api_8h.html ...ation/html/Cordio_Stack_Cordio_Profiles/glpc__api_8h.html +0 -220
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/glpc__api_8h__incl.map .../html/Cordio_Stack_Cordio_Profiles/glpc__api_8h__incl.map +0 -16
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/glpc__api_8h__incl.md5 .../html/Cordio_Stack_Cordio_Profiles/glpc__api_8h__incl.md5 +0 -1
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/glpc__api_8h__incl.png .../html/Cordio_Stack_Cordio_Profiles/glpc__api_8h__incl.png +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/glpc__api_8h_source.html ...tml/Cordio_Stack_Cordio_Profiles/glpc__api_8h_source.html +0 -156
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/glps__api_8h.html ...ation/html/Cordio_Stack_Cordio_Profiles/glps__api_8h.html +0 -178
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/glps__api_8h_source.html ...tml/Cordio_Stack_Cordio_Profiles/glps__api_8h_source.html +0 -146
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/glps__main_8h.html ...tion/html/Cordio_Stack_Cordio_Profiles/glps__main_8h.html +0 -212
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/glps__main_8h__incl.map ...html/Cordio_Stack_Cordio_Profiles/glps__main_8h__incl.map +0 -3
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/glps__main_8h__incl.md5 ...html/Cordio_Stack_Cordio_Profiles/glps__main_8h__incl.md5 +0 -1
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/glps__main_8h__incl.png ...html/Cordio_Stack_Cordio_Profiles/glps__main_8h__incl.png +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/glps__main_8h_source.html ...ml/Cordio_Stack_Cordio_Profiles/glps__main_8h_source.html +0 -170
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/graph_legend.html ...ation/html/Cordio_Stack_Cordio_Profiles/graph_legend.html +0 -164
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/graph_legend.md5 ...tation/html/Cordio_Stack_Cordio_Profiles/graph_legend.md5 +0 -1
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/graph_legend.png ...tation/html/Cordio_Stack_Cordio_Profiles/graph_legend.png +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/group___a_l_e_r_t-_r_e_l_a_t_e_d___s_e_r_v_i_c_e.html ...les/group___a_l_e_r_t-_r_e_l_a_t_e_d___s_e_r_v_i_c_e.html +0 -384
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/group___a_l_e_r_t-_r_e_l_a_t_e_d___s_e_r_v_i_c_e.js ...files/group___a_l_e_r_t-_r_e_l_a_t_e_d___s_e_r_v_i_c_e.js +0 -42
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/group___a_l_e_r_t___n_o_t_i_f_i_c_a_t_i_o_n___p_r_o_f_i_l_e.html ..._a_l_e_r_t___n_o_t_i_f_i_c_a_t_i_o_n___p_r_o_f_i_l_e.html +0 -349
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/group___a_l_e_r_t___n_o_t_i_f_i_c_a_t_i_o_n___p_r_o_f_i_l_e.js ...___a_l_e_r_t___n_o_t_i_f_i_c_a_t_i_o_n___p_r_o_f_i_l_e.js +0 -6
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/group___a_p_p___f_r_a_m_e_w_o_r_k.html ...ck_Cordio_Profiles/group___a_p_p___f_r_a_m_e_w_o_r_k.html +0 -223
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/group___a_p_p___f_r_a_m_e_w_o_r_k.js ...tack_Cordio_Profiles/group___a_p_p___f_r_a_m_e_w_o_r_k.js +0 -8
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/group___a_p_p___f_r_a_m_e_w_o_r_k___a_p_i.html ...o_Profiles/group___a_p_p___f_r_a_m_e_w_o_r_k___a_p_i.html +0 -2601
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/group___a_p_p___f_r_a_m_e_w_o_r_k___a_p_i.js ...dio_Profiles/group___a_p_p___f_r_a_m_e_w_o_r_k___a_p_i.js +0 -161
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/group___a_p_p___f_r_a_m_e_w_o_r_k___d_b___a_p_i.html ...iles/group___a_p_p___f_r_a_m_e_w_o_r_k___d_b___a_p_i.html +0 -1173
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/group___a_p_p___f_r_a_m_e_w_o_r_k___d_b___a_p_i.js ...ofiles/group___a_p_p___f_r_a_m_e_w_o_r_k___d_b___a_p_i.js +0 -39
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/group___a_p_p___f_r_a_m_e_w_o_r_k___h_w___a_p_i.html ...iles/group___a_p_p___f_r_a_m_e_w_o_r_k___h_w___a_p_i.html +0 -499
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/group___a_p_p___f_r_a_m_e_w_o_r_k___h_w___a_p_i.js ...ofiles/group___a_p_p___f_r_a_m_e_w_o_r_k___h_w___a_p_i.js +0 -71
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/group___a_p_p___f_r_a_m_e_w_o_r_k___p_a_r_a_m___a_p_i.html ...roup___a_p_p___f_r_a_m_e_w_o_r_k___p_a_r_a_m___a_p_i.html +0 -279
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/group___a_p_p___f_r_a_m_e_w_o_r_k___p_a_r_a_m___a_p_i.js .../group___a_p_p___f_r_a_m_e_w_o_r_k___p_a_r_a_m___a_p_i.js +0 -7
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/group___a_p_p___f_r_a_m_e_w_o_r_k___u_i___a_p_i.html ...iles/group___a_p_p___f_r_a_m_e_w_o_r_k___u_i___a_p_i.html +0 -881
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/group___a_p_p___f_r_a_m_e_w_o_r_k___u_i___a_p_i.js ...ofiles/group___a_p_p___f_r_a_m_e_w_o_r_k___u_i___a_p_i.js +0 -81
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/group___a_r_m___l_t_d___p_r_o_p_r_i_e_t_a_r_y___p_r_o_f_i_l_e.html ..._r_m___l_t_d___p_r_o_p_r_i_e_t_a_r_y___p_r_o_f_i_l_e.html +0 -227
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/group___a_r_m___l_t_d___p_r_o_p_r_i_e_t_a_r_y___p_r_o_f_i_l_e.js ..._a_r_m___l_t_d___p_r_o_p_r_i_e_t_a_r_y___p_r_o_f_i_l_e.js +0 -4
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/group___b_a_t_t_e_r_y___p_r_o_f_i_l_e.html ...ordio_Profiles/group___b_a_t_t_e_r_y___p_r_o_f_i_l_e.html +0 -397
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/group___b_a_t_t_e_r_y___p_r_o_f_i_l_e.js ..._Cordio_Profiles/group___b_a_t_t_e_r_y___p_r_o_f_i_l_e.js +0 -22
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/group___b_a_t_t_e_r_y___s_e_r_v_i_c_e.html ...ordio_Profiles/group___b_a_t_t_e_r_y___s_e_r_v_i_c_e.html +0 -313
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/group___b_a_t_t_e_r_y___s_e_r_v_i_c_e.js ..._Cordio_Profiles/group___b_a_t_t_e_r_y___s_e_r_v_i_c_e.js +0 -15
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/group___b_l_e___p_r_o_f_i_l_e_s.html ...tack_Cordio_Profiles/group___b_l_e___p_r_o_f_i_l_e_s.html +0 -155
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/group___b_l_e___p_r_o_f_i_l_e_s.js ..._Stack_Cordio_Profiles/group___b_l_e___p_r_o_f_i_l_e_s.js +0 -5
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/group___b_l_e___s_t_a_c_k.html ...rdio_Stack_Cordio_Profiles/group___b_l_e___s_t_a_c_k.html +0 -177
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/group___b_l_e___s_t_a_c_k.js ...Cordio_Stack_Cordio_Profiles/group___b_l_e___s_t_a_c_k.js +0 -12
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/group___b_l_o_o_d___p_r_e_s_s_u_r_e___p_r_o_f_i_l_e.html .../group___b_l_o_o_d___p_r_e_s_s_u_r_e___p_r_o_f_i_l_e.html +0 -521
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/group___b_l_o_o_d___p_r_e_s_s_u_r_e___p_r_o_f_i_l_e.js ...es/group___b_l_o_o_d___p_r_e_s_s_u_r_e___p_r_o_f_i_l_e.js +0 -21
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/group___b_l_o_o_d___p_r_e_s_s_u_r_e___s_e_r_v_i_c_e.html .../group___b_l_o_o_d___p_r_e_s_s_u_r_e___s_e_r_v_i_c_e.html +0 -349
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/group___b_l_o_o_d___p_r_e_s_s_u_r_e___s_e_r_v_i_c_e.js ...es/group___b_l_o_o_d___p_r_e_s_s_u_r_e___s_e_r_v_i_c_e.js +0 -20
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/group___c_y_c_l_i_n_g___p_o_w_e_r___p_r_o_f_i_l_e.html ...es/group___c_y_c_l_i_n_g___p_o_w_e_r___p_r_o_f_i_l_e.html +0 -345
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/group___c_y_c_l_i_n_g___p_o_w_e_r___p_r_o_f_i_l_e.js ...iles/group___c_y_c_l_i_n_g___p_o_w_e_r___p_r_o_f_i_l_e.js +0 -8
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/group___c_y_c_l_i_n_g___p_o_w_e_r___s_e_r_v_i_c_e.html ...es/group___c_y_c_l_i_n_g___p_o_w_e_r___s_e_r_v_i_c_e.html +0 -425
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/group___c_y_c_l_i_n_g___p_o_w_e_r___s_e_r_v_i_c_e.js ...iles/group___c_y_c_l_i_n_g___p_o_w_e_r___s_e_r_v_i_c_e.js +0 -40
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/group___c_y_c_l_i_n_g___s_p_e_e_d___a_n_d___c_a_d_e_n_c_e___p_r_o_f_i_l_e.html ...___s_p_e_e_d___a_n_d___c_a_d_e_n_c_e___p_r_o_f_i_l_e.html +0 -281
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/group___c_y_c_l_i_n_g___s_p_e_e_d___a_n_d___c_a_d_e_n_c_e___p_r_o_f_i_l_e.js ..._g___s_p_e_e_d___a_n_d___c_a_d_e_n_c_e___p_r_o_f_i_l_e.js +0 -7
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/group___c_y_c_l_i_n_g___s_p_e_e_d___a_n_d___c_a_d_e_n_c_e___s_e_r_v_i_c_e.html ...___s_p_e_e_d___a_n_d___c_a_d_e_n_c_e___s_e_r_v_i_c_e.html +0 -353
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/group___c_y_c_l_i_n_g___s_p_e_e_d___a_n_d___c_a_d_e_n_c_e___s_e_r_v_i_c_e.js ..._g___s_p_e_e_d___a_n_d___c_a_d_e_n_c_e___s_e_r_v_i_c_e.js +0 -22
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/group___d_e_v_i_c_e___i_n_f_o_r_m_a_t_i_o_n___p_r_o_f_i_l_e.html ..._d_e_v_i_c_e___i_n_f_o_r_m_a_t_i_o_n___p_r_o_f_i_l_e.html +0 -296
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/group___d_e_v_i_c_e___i_n_f_o_r_m_a_t_i_o_n___p_r_o_f_i_l_e.js ...___d_e_v_i_c_e___i_n_f_o_r_m_a_t_i_o_n___p_r_o_f_i_l_e.js +0 -5
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/group___d_e_v_i_c_e___i_n_f_o_r_m_a_t_i_o_n___s_e_r_v_i_c_e.html ..._d_e_v_i_c_e___i_n_f_o_r_m_a_t_i_o_n___s_e_r_v_i_c_e.html +0 -382
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/group___d_e_v_i_c_e___i_n_f_o_r_m_a_t_i_o_n___s_e_r_v_i_c_e.js ...___d_e_v_i_c_e___i_n_f_o_r_m_a_t_i_o_n___s_e_r_v_i_c_e.js +0 -34
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/group___d_m___connections.html ...rdio_Stack_Cordio_Profiles/group___d_m___connections.html +0 -300
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/group___d_m___synchronization.html ..._Stack_Cordio_Profiles/group___d_m___synchronization.html +0 -200
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/group___f_i_n_d___m_e___p_r_o_f_i_l_e.html ...ordio_Profiles/group___f_i_n_d___m_e___p_r_o_f_i_l_e.html +0 -267
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/group___f_i_n_d___m_e___p_r_o_f_i_l_e.js ..._Cordio_Profiles/group___f_i_n_d___m_e___p_r_o_f_i_l_e.js +0 -5
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/group___g_a_p___p_r_o_f_i_l_e.html ..._Stack_Cordio_Profiles/group___g_a_p___p_r_o_f_i_l_e.html +0 -266
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/group___g_a_p___p_r_o_f_i_l_e.js ...io_Stack_Cordio_Profiles/group___g_a_p___p_r_o_f_i_l_e.js +0 -5
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/group___g_a_t_t___a_n_d___g_a_p___s_e_r_v_i_c_e.html ...iles/group___g_a_t_t___a_n_d___g_a_p___s_e_r_v_i_c_e.html +0 -474
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/group___g_a_t_t___a_n_d___g_a_p___s_e_r_v_i_c_e.js ...ofiles/group___g_a_t_t___a_n_d___g_a_p___s_e_r_v_i_c_e.js +0 -29
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/group___g_a_t_t___p_r_o_f_i_l_e.html ...tack_Cordio_Profiles/group___g_a_t_t___p_r_o_f_i_l_e.html +0 -266
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/group___g_a_t_t___p_r_o_f_i_l_e.js ..._Stack_Cordio_Profiles/group___g_a_t_t___p_r_o_f_i_l_e.js +0 -5
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/group___g_a_t_t___p_r_o_f_i_l_e_s.html ...ck_Cordio_Profiles/group___g_a_t_t___p_r_o_f_i_l_e_s.html +0 -394
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/group___g_a_t_t___p_r_o_f_i_l_e_s.js ...tack_Cordio_Profiles/group___g_a_t_t___p_r_o_f_i_l_e_s.js +0 -53
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/group___g_l_u_c_o_s_e___p_r_o_f_i_l_e.html ...ordio_Profiles/group___g_l_u_c_o_s_e___p_r_o_f_i_l_e.html +0 -887
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/group___g_l_u_c_o_s_e___p_r_o_f_i_l_e.js ..._Cordio_Profiles/group___g_l_u_c_o_s_e___p_r_o_f_i_l_e.js +0 -82
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/group___g_l_u_c_o_s_e___s_e_r_v_i_c_e.html ...ordio_Profiles/group___g_l_u_c_o_s_e___s_e_r_v_i_c_e.html +0 -350
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/group___g_l_u_c_o_s_e___s_e_r_v_i_c_e.js ..._Cordio_Profiles/group___g_l_u_c_o_s_e___s_e_r_v_i_c_e.js +0 -24
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/group___g_y_r_o_s_c_o_p_e___s_e_n_s_o_r___s_e_r_v_i_c_e.html ...up___g_y_r_o_s_c_o_p_e___s_e_n_s_o_r___s_e_r_v_i_c_e.html +0 -332
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/group___g_y_r_o_s_c_o_p_e___s_e_n_s_o_r___s_e_r_v_i_c_e.js ...roup___g_y_r_o_s_c_o_p_e___s_e_n_s_o_r___s_e_r_v_i_c_e.js +0 -31
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/group___g_y_r_o_s_c_o_p_e___s_e_r_v_i_c_e___p_r_o_f_i_l_e.html ...___g_y_r_o_s_c_o_p_e___s_e_r_v_i_c_e___p_r_o_f_i_l_e.html +0 -301
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/group___g_y_r_o_s_c_o_p_e___s_e_r_v_i_c_e___p_r_o_f_i_l_e.js ...up___g_y_r_o_s_c_o_p_e___s_e_r_v_i_c_e___p_r_o_f_i_l_e.js +0 -8
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/group___h_e_a_l_t_h___t_h_e_r_m_o_m_e_t_e_r___p_r_o_f_i_l_e.html ..._h_e_a_l_t_h___t_h_e_r_m_o_m_e_t_e_r___p_r_o_f_i_l_e.html +0 -521
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/group___h_e_a_l_t_h___t_h_e_r_m_o_m_e_t_e_r___p_r_o_f_i_l_e.js ...___h_e_a_l_t_h___t_h_e_r_m_o_m_e_t_e_r___p_r_o_f_i_l_e.js +0 -21
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/group___h_e_a_l_t_h___t_h_e_r_m_o_m_e_t_e_r___s_e_r_v_i_c_e.html ..._h_e_a_l_t_h___t_h_e_r_m_o_m_e_t_e_r___s_e_r_v_i_c_e.html +0 -321
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/group___h_e_a_l_t_h___t_h_e_r_m_o_m_e_t_e_r___s_e_r_v_i_c_e.js ...___h_e_a_l_t_h___t_h_e_r_m_o_m_e_t_e_r___s_e_r_v_i_c_e.js +0 -19
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/group___h_e_a_r_t___r_a_t_e___p_r_o_f_i_l_e.html ...Profiles/group___h_e_a_r_t___r_a_t_e___p_r_o_f_i_l_e.html +0 -574
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/group___h_e_a_r_t___r_a_t_e___p_r_o_f_i_l_e.js ...o_Profiles/group___h_e_a_r_t___r_a_t_e___p_r_o_f_i_l_e.js +0 -20
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/group___h_e_a_r_t___r_a_t_e___s_e_r_v_i_c_e.html ...Profiles/group___h_e_a_r_t___r_a_t_e___s_e_r_v_i_c_e.html +0 -322
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/group___h_e_a_r_t___r_a_t_e___s_e_r_v_i_c_e.js ...o_Profiles/group___h_e_a_r_t___r_a_t_e___s_e_r_v_i_c_e.js +0 -19
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/group___h_u_m_a_n___i_n_t_e_r_f_a_c_e___d_e_v_i_c_e___p_r_o_f_i_l_e.html ..._n___i_n_t_e_r_f_a_c_e___d_e_v_i_c_e___p_r_o_f_i_l_e.html +0 -494
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/group___h_u_m_a_n___i_n_t_e_r_f_a_c_e___d_e_v_i_c_e___p_r_o_f_i_l_e.js ..._a_n___i_n_t_e_r_f_a_c_e___d_e_v_i_c_e___p_r_o_f_i_l_e.js +0 -28
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/group___h_u_m_a_n___i_n_t_e_r_f_a_c_e___d_e_v_i_c_e___s_e_r_v_i_c_e.html ..._n___i_n_t_e_r_f_a_c_e___d_e_v_i_c_e___s_e_r_v_i_c_e.html +0 -569
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/group___h_u_m_a_n___i_n_t_e_r_f_a_c_e___d_e_v_i_c_e___s_e_r_v_i_c_e.js ..._a_n___i_n_t_e_r_f_a_c_e___d_e_v_i_c_e___s_e_r_v_i_c_e.js +0 -59
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/group___i_n_t_e_r_n_e_t___p_r_o_f_i_l_e___s_u_p_p_o_r_t___s_e_r_v_i_c_e.html ..._e_t___p_r_o_f_i_l_e___s_u_p_p_o_r_t___s_e_r_v_i_c_e.html +0 -273
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/group___i_n_t_e_r_n_e_t___p_r_o_f_i_l_e___s_u_p_p_o_r_t___s_e_r_v_i_c_e.js ..._n_e_t___p_r_o_f_i_l_e___s_u_p_p_o_r_t___s_e_r_v_i_c_e.js +0 -11
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/group___p_h_o_n_e___a_l_e_r_t___s_t_a_t_u_s___p_r_o_f_i_l_e.html ..._p_h_o_n_e___a_l_e_r_t___s_t_a_t_u_s___p_r_o_f_i_l_e.html +0 -330
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/group___p_h_o_n_e___a_l_e_r_t___s_t_a_t_u_s___p_r_o_f_i_l_e.js ...___p_h_o_n_e___a_l_e_r_t___s_t_a_t_u_s___p_r_o_f_i_l_e.js +0 -6
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/group___p_r_o_x_i_m_i_t_y___s_e_r_v_i_c_e.html ...o_Profiles/group___p_r_o_x_i_m_i_t_y___s_e_r_v_i_c_e.html +0 -321
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/group___p_r_o_x_i_m_i_t_y___s_e_r_v_i_c_e.js ...dio_Profiles/group___p_r_o_x_i_m_i_t_y___s_e_r_v_i_c_e.js +0 -19
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/group___p_u_l_s_e___o_x_i_m_e_t_e_r___p_r_o_f_i_l_e.html .../group___p_u_l_s_e___o_x_i_m_e_t_e_r___p_r_o_f_i_l_e.html +0 -966
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/group___p_u_l_s_e___o_x_i_m_e_t_e_r___p_r_o_f_i_l_e.js ...es/group___p_u_l_s_e___o_x_i_m_e_t_e_r___p_r_o_f_i_l_e.js +0 -48
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/group___p_u_l_s_e___o_x_i_m_i_t_e_r___s_e_r_v_i_c_e.html .../group___p_u_l_s_e___o_x_i_m_i_t_e_r___s_e_r_v_i_c_e.html +0 -339
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/group___p_u_l_s_e___o_x_i_m_i_t_e_r___s_e_r_v_i_c_e.js ...es/group___p_u_l_s_e___o_x_i_m_i_t_e_r___s_e_r_v_i_c_e.js +0 -22
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/group___r_u_n_n_i_n_g___s_p_e_e_d___a_n_d___c_a_d_e_n_c_e___p_r_o_f_i_l_e.html ...___s_p_e_e_d___a_n_d___c_a_d_e_n_c_e___p_r_o_f_i_l_e.html +0 -300
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/group___r_u_n_n_i_n_g___s_p_e_e_d___a_n_d___c_a_d_e_n_c_e___p_r_o_f_i_l_e.js ..._g___s_p_e_e_d___a_n_d___c_a_d_e_n_c_e___p_r_o_f_i_l_e.js +0 -14
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/group___r_u_n_n_i_n_g___s_p_e_e_d___a_n_d___c_a_d_e_n_c_e___s_e_r_v_i_c_e.html ...___s_p_e_e_d___a_n_d___c_a_d_e_n_c_e___s_e_r_v_i_c_e.html +0 -361
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/group___r_u_n_n_i_n_g___s_p_e_e_d___a_n_d___c_a_d_e_n_c_e___s_e_r_v_i_c_e.js ..._g___s_p_e_e_d___a_n_d___c_a_d_e_n_c_e___s_e_r_v_i_c_e.js +0 -24
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/group___s_c_a_n___p_a_r_a_m_e_t_e_r___p_r_o_f_i_l_e.html .../group___s_c_a_n___p_a_r_a_m_e_t_e_r___p_r_o_f_i_l_e.html +0 -253
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/group___s_c_a_n___p_a_r_a_m_e_t_e_r___p_r_o_f_i_l_e.js ...es/group___s_c_a_n___p_a_r_a_m_e_t_e_r___p_r_o_f_i_l_e.js +0 -6
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/group___s_c_a_n___p_a_r_a_m_e_t_e_r___s_e_r_v_i_c_e.html .../group___s_c_a_n___p_a_r_a_m_e_t_e_r___s_e_r_v_i_c_e.html +0 -274
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/group___s_c_a_n___p_a_r_a_m_e_t_e_r___s_e_r_v_i_c_e.js ...es/group___s_c_a_n___p_a_r_a_m_e_t_e_r___s_e_r_v_i_c_e.js +0 -13
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/group___s_e_r_v_i_c_e___c_o_n_f_i_g_u_r_a_t_i_o_n.html ...es/group___s_e_r_v_i_c_e___c_o_n_f_i_g_u_r_a_t_i_o_n.html +0 -150
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/group___s_e_r_v_i_c_e___c_o_n_f_i_g_u_r_a_t_i_o_n.js ...iles/group___s_e_r_v_i_c_e___c_o_n_f_i_g_u_r_a_t_i_o_n.js +0 -5
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/group___s_e_r_v_i_c_e___c_o_n_s_t_a_n_t_s.html ...o_Profiles/group___s_e_r_v_i_c_e___c_o_n_s_t_a_n_t_s.html +0 -1677
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/group___s_e_r_v_i_c_e___c_o_n_s_t_a_n_t_s.js ...dio_Profiles/group___s_e_r_v_i_c_e___c_o_n_s_t_a_n_t_s.js +0 -334
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/group___s_m_p___l_e_g___i_n_t___b_e_h_a_v_i_o_r.html ...iles/group___s_m_p___l_e_g___i_n_t___b_e_h_a_v_i_o_r.html +0 -272
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/group___s_m_p___l_e_g___r_s_p___b_e_h_a_v_i_o_r.html ...iles/group___s_m_p___l_e_g___r_s_p___b_e_h_a_v_i_o_r.html +0 -277
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/group___s_m_p___s_c___i_n_t___b_e_h_a_v_i_o_r.html ...ofiles/group___s_m_p___s_c___i_n_t___b_e_h_a_v_i_o_r.html +0 -416
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/group___s_m_p___s_c___r_s_p___b_e_h_a_v_i_o_r.html ...ofiles/group___s_m_p___s_c___r_s_p___b_e_h_a_v_i_o_r.html +0 -435
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/group___s_t_a_c_k___a_t_t.html ...rdio_Stack_Cordio_Profiles/group___s_t_a_c_k___a_t_t.html +0 -357
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/group___s_t_a_c_k___a_t_t.js ...Cordio_Stack_Cordio_Profiles/group___s_t_a_c_k___a_t_t.js +0 -6
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/group___s_t_a_c_k___a_t_t___a_p_i.html ...ck_Cordio_Profiles/group___s_t_a_c_k___a_t_t___a_p_i.html +0 -2785
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/group___s_t_a_c_k___a_t_t___a_p_i.js ...tack_Cordio_Profiles/group___s_t_a_c_k___a_t_t___a_p_i.js +0 -579
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/group___s_t_a_c_k___a_t_t_c___a_p_i.html ..._Cordio_Profiles/group___s_t_a_c_k___a_t_t_c___a_p_i.html +0 -1248
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/group___s_t_a_c_k___a_t_t_c___a_p_i.js ...ck_Cordio_Profiles/group___s_t_a_c_k___a_t_t_c___a_p_i.js +0 -49
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/group___s_t_a_c_k___a_t_t_s___a_p_i.html ..._Cordio_Profiles/group___s_t_a_c_k___a_t_t_s___a_p_i.html +0 -1490
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/group___s_t_a_c_k___a_t_t_s___a_p_i.js ...ck_Cordio_Profiles/group___s_t_a_c_k___a_t_t_s___a_p_i.js +0 -79
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/group___s_t_a_c_k___b_e_h_a_v_i_o_r.html ..._Cordio_Profiles/group___s_t_a_c_k___b_e_h_a_v_i_o_r.html +0 -155
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/group___s_t_a_c_k___b_e_h_a_v_i_o_r.js ...ck_Cordio_Profiles/group___s_t_a_c_k___b_e_h_a_v_i_o_r.js +0 -9
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/group___s_t_a_c_k___d_m.html ...Cordio_Stack_Cordio_Profiles/group___s_t_a_c_k___d_m.html +0 -287
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/group___s_t_a_c_k___d_m.js ...l/Cordio_Stack_Cordio_Profiles/group___s_t_a_c_k___d_m.js +0 -4
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/group___s_t_a_c_k___d_m___a_p_i.html ...tack_Cordio_Profiles/group___s_t_a_c_k___d_m___a_p_i.html +0 -6110
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/group___s_t_a_c_k___d_m___a_p_i.js ..._Stack_Cordio_Profiles/group___s_t_a_c_k___d_m___a_p_i.js +0 -491
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/group___s_t_a_c_k___e_v_e_n_t.html ..._Stack_Cordio_Profiles/group___s_t_a_c_k___e_v_e_n_t.html +0 -638
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/group___s_t_a_c_k___e_v_e_n_t.js ...io_Stack_Cordio_Profiles/group___s_t_a_c_k___e_v_e_n_t.js +0 -17
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/group___s_t_a_c_k___h_c_i.html ...rdio_Stack_Cordio_Profiles/group___s_t_a_c_k___h_c_i.html +0 -509
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/group___s_t_a_c_k___h_c_i.js ...Cordio_Stack_Cordio_Profiles/group___s_t_a_c_k___h_c_i.js +0 -9
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/group___s_t_a_c_k___h_c_i___a_c_l___a_p_i.html ...o_Profiles/group___s_t_a_c_k___h_c_i___a_c_l___a_p_i.html +0 -232
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/group___s_t_a_c_k___h_c_i___a_c_l___a_p_i.js ...dio_Profiles/group___s_t_a_c_k___h_c_i___a_c_l___a_p_i.js +0 -6
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/group___s_t_a_c_k___h_c_i___a_p_i.html ...ck_Cordio_Profiles/group___s_t_a_c_k___h_c_i___a_p_i.html +0 -3079
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/group___s_t_a_c_k___h_c_i___a_p_i.js ...tack_Cordio_Profiles/group___s_t_a_c_k___h_c_i___a_p_i.js +0 -430
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/group___s_t_a_c_k___h_c_i___c_m_d___a_p_i.html ...o_Profiles/group___s_t_a_c_k___h_c_i___c_m_d___a_p_i.html +0 -3272
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/group___s_t_a_c_k___h_c_i___c_m_d___a_p_i.js ...dio_Profiles/group___s_t_a_c_k___h_c_i___c_m_d___a_p_i.js +0 -134
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/group___s_t_a_c_k___h_c_i___e_v_t___a_p_i.html ...o_Profiles/group___s_t_a_c_k___h_c_i___e_v_t___a_p_i.html +0 -594
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/group___s_t_a_c_k___h_c_i___e_v_t___a_p_i.js ...dio_Profiles/group___s_t_a_c_k___h_c_i___e_v_t___a_p_i.js +0 -430
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/group___s_t_a_c_k___h_c_i___i_n_i_t___a_p_i.html ...Profiles/group___s_t_a_c_k___h_c_i___i_n_i_t___a_p_i.html +0 -461
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/group___s_t_a_c_k___h_c_i___i_n_i_t___a_p_i.js ...o_Profiles/group___s_t_a_c_k___h_c_i___i_n_i_t___a_p_i.js +0 -13
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/group___s_t_a_c_k___h_c_i___o_p_t___a_p_i.html ...o_Profiles/group___s_t_a_c_k___h_c_i___o_p_t___a_p_i.html +0 -451
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/group___s_t_a_c_k___h_c_i___o_p_t___a_p_i.js ...dio_Profiles/group___s_t_a_c_k___h_c_i___o_p_t___a_p_i.js +0 -17
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/group___s_t_a_c_k___i_n_i_t.html ...io_Stack_Cordio_Profiles/group___s_t_a_c_k___i_n_i_t.html +0 -272
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/group___s_t_a_c_k___i_n_i_t.js ...rdio_Stack_Cordio_Profiles/group___s_t_a_c_k___i_n_i_t.js +0 -17
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/group___s_t_a_c_k___l2_c_a_p.html ...o_Stack_Cordio_Profiles/group___s_t_a_c_k___l2_c_a_p.html +0 -193
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/group___s_t_a_c_k___l2_c_a_p.js ...dio_Stack_Cordio_Profiles/group___s_t_a_c_k___l2_c_a_p.js +0 -4
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/group___s_t_a_c_k___l2_c_a_p___a_p_i.html ...Cordio_Profiles/group___s_t_a_c_k___l2_c_a_p___a_p_i.html +0 -1192
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/group___s_t_a_c_k___l2_c_a_p___a_p_i.js ...k_Cordio_Profiles/group___s_t_a_c_k___l2_c_a_p___a_p_i.js +0 -132
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/group___s_t_a_c_k___s_e_c_u_r_i_t_y.html ..._Cordio_Profiles/group___s_t_a_c_k___s_e_c_u_r_i_t_y.html +0 -149
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/group___s_t_a_c_k___s_e_c_u_r_i_t_y.js ...ck_Cordio_Profiles/group___s_t_a_c_k___s_e_c_u_r_i_t_y.js +0 -4
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/group___s_t_a_c_k___s_e_c_u_r_i_t_y___a_p_i.html ...Profiles/group___s_t_a_c_k___s_e_c_u_r_i_t_y___a_p_i.html +0 -574
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/group___s_t_a_c_k___s_e_c_u_r_i_t_y___a_p_i.js ...o_Profiles/group___s_t_a_c_k___s_e_c_u_r_i_t_y___a_p_i.js +0 -37
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/group___s_t_a_c_k___s_m_p.html ...rdio_Stack_Cordio_Profiles/group___s_t_a_c_k___s_m_p.html +0 -200
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/group___s_t_a_c_k___s_m_p.js ...Cordio_Stack_Cordio_Profiles/group___s_t_a_c_k___s_m_p.js +0 -4
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/group___s_t_a_c_k___s_m_p___a_p_i.html ...ck_Cordio_Profiles/group___s_t_a_c_k___s_m_p___a_p_i.html +0 -1019
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/group___s_t_a_c_k___s_m_p___a_p_i.js ...tack_Cordio_Profiles/group___s_t_a_c_k___s_m_p___a_p_i.js +0 -162
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/group___t_e_m_p_e_r_a_t_u_r_e___s_e_n_s_o_r___s_e_r_v_i_c_e.html ..._t_e_m_p_e_r_a_t_u_r_e___s_e_n_s_o_r___s_e_r_v_i_c_e.html +0 -363
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/group___t_e_m_p_e_r_a_t_u_r_e___s_e_n_s_o_r___s_e_r_v_i_c_e.js ...___t_e_m_p_e_r_a_t_u_r_e___s_e_n_s_o_r___s_e_r_v_i_c_e.js +0 -29
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/group___t_e_m_p_e_r_a_t_u_r_e___s_e_r_v_i_c_e___p_r_o_f_i_l_e.html ..._e_m_p_e_r_a_t_u_r_e___s_e_r_v_i_c_e___p_r_o_f_i_l_e.html +0 -287
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/group___t_e_m_p_e_r_a_t_u_r_e___s_e_r_v_i_c_e___p_r_o_f_i_l_e.js ..._t_e_m_p_e_r_a_t_u_r_e___s_e_r_v_i_c_e___p_r_o_f_i_l_e.js +0 -8
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/group___t_i_m_e-_r_e_l_a_t_e_d___s_e_r_v_i_c_e.html ...files/group___t_i_m_e-_r_e_l_a_t_e_d___s_e_r_v_i_c_e.html +0 -354
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/group___t_i_m_e-_r_e_l_a_t_e_d___s_e_r_v_i_c_e.js ...rofiles/group___t_i_m_e-_r_e_l_a_t_e_d___s_e_r_v_i_c_e.js +0 -26
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/group___t_i_m_e___p_r_o_f_i_l_e.html ...tack_Cordio_Profiles/group___t_i_m_e___p_r_o_f_i_l_e.html +0 -278
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/group___t_i_m_e___p_r_o_f_i_l_e.js ..._Stack_Cordio_Profiles/group___t_i_m_e___p_r_o_f_i_l_e.js +0 -5
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/group___u_r_i_b_e_a_c_o_n___c_o_n_f_i_g_u_r_a_t_i_o_n___p_r_o_f_i_l_e.html ..._a_c_o_n___c_o_n_f_i_g_u_r_a_t_i_o_n___p_r_o_f_i_l_e.html +0 -530
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/group___u_r_i_b_e_a_c_o_n___c_o_n_f_i_g_u_r_a_t_i_o_n___p_r_o_f_i_l_e.js ..._e_a_c_o_n___c_o_n_f_i_g_u_r_a_t_i_o_n___p_r_o_f_i_l_e.js +0 -22
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/group___u_r_i_c_f_g___c_o_n_f_i_g_u_r_a_t_i_o_n___s_e_r_v_i_c_e.html ..._i_c_f_g___c_o_n_f_i_g_u_r_a_t_i_o_n___s_e_r_v_i_c_e.html +0 -424
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/group___u_r_i_c_f_g___c_o_n_f_i_g_u_r_a_t_i_o_n___s_e_r_v_i_c_e.js ..._r_i_c_f_g___c_o_n_f_i_g_u_r_a_t_i_o_n___s_e_r_v_i_c_e.js +0 -38
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/group___u_s_e_r___d_a_t_a___p_r_o_f_i_l_e.html ...o_Profiles/group___u_s_e_r___d_a_t_a___p_r_o_f_i_l_e.html +0 -690
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/group___u_s_e_r___d_a_t_a___p_r_o_f_i_l_e.js ...dio_Profiles/group___u_s_e_r___d_a_t_a___p_r_o_f_i_l_e.js +0 -35
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/group___w_e_i_g_h_t___s_c_a_l_e___p_r_o_f_i_l_e.html ...iles/group___w_e_i_g_h_t___s_c_a_l_e___p_r_o_f_i_l_e.html +0 -339
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/group___w_e_i_g_h_t___s_c_a_l_e___p_r_o_f_i_l_e.js ...ofiles/group___w_e_i_g_h_t___s_c_a_l_e___p_r_o_f_i_l_e.js +0 -7
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/group___w_e_i_g_h_t___s_c_a_l_e___s_e_r_v_i_c_e.html ...iles/group___w_e_i_g_h_t___s_c_a_l_e___s_e_r_v_i_c_e.html +0 -303
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/group___w_e_i_g_h_t___s_c_a_l_e___s_e_r_v_i_c_e.js ...ofiles/group___w_e_i_g_h_t___s_c_a_l_e___s_e_r_v_i_c_e.js +0 -16
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/group___w_i_r_e_l_e_s_s___d_a_t_a___e_x_c_h_a_n_g_e___p_r_o_f_i_l_e.html ..._l_e_s_s___d_a_t_a___e_x_c_h_a_n_g_e___p_r_o_f_i_l_e.html +0 -2202
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/group___w_i_r_e_l_e_s_s___d_a_t_a___e_x_c_h_a_n_g_e___p_r_o_f_i_l_e.js ..._e_l_e_s_s___d_a_t_a___e_x_c_h_a_n_g_e___p_r_o_f_i_l_e.js +0 -224
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/group___w_i_r_e_l_e_s_s___d_a_t_a___e_x_c_h_a_n_g_e___s_e_r_v_i_c_e.html ..._l_e_s_s___d_a_t_a___e_x_c_h_a_n_g_e___s_e_r_v_i_c_e.html +0 -354
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/group___w_i_r_e_l_e_s_s___d_a_t_a___e_x_c_h_a_n_g_e___s_e_r_v_i_c_e.js ..._e_l_e_s_s___d_a_t_a___e_x_c_h_a_n_g_e___s_e_r_v_i_c_e.js +0 -27
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/group___w_p___s_e_r_v_i_c_e.html ...io_Stack_Cordio_Profiles/group___w_p___s_e_r_v_i_c_e.html +0 -308
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/group___w_p___s_e_r_v_i_c_e.js ...rdio_Stack_Cordio_Profiles/group___w_p___s_e_r_v_i_c_e.js +0 -14
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/group___w_s_f.html ...tion/html/Cordio_Stack_Cordio_Profiles/group___w_s_f.html +0 -306
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/group___w_s_f.js ...tation/html/Cordio_Stack_Cordio_Profiles/group___w_s_f.js +0 -15
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/group___w_s_f___a_s_s_e_r_t___a_p_i.html ..._Cordio_Profiles/group___w_s_f___a_s_s_e_r_t___a_p_i.html +0 -329
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/group___w_s_f___a_s_s_e_r_t___a_p_i.js ...ck_Cordio_Profiles/group___w_s_f___a_s_s_e_r_t___a_p_i.js +0 -10
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/group___w_s_f___b_u_f___a_p_i.html ..._Stack_Cordio_Profiles/group___w_s_f___b_u_f___a_p_i.html +0 -468
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/group___w_s_f___b_u_f___a_p_i.js ...io_Stack_Cordio_Profiles/group___w_s_f___b_u_f___a_p_i.js +0 -40
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/group___w_s_f___c_s___a_p_i.html ...io_Stack_Cordio_Profiles/group___w_s_f___c_s___a_p_i.html +0 -342
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/group___w_s_f___c_s___a_p_i.js ...rdio_Stack_Cordio_Profiles/group___w_s_f___c_s___a_p_i.js +0 -13
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/group___w_s_f___e_f_s___a_p_i.html ..._Stack_Cordio_Profiles/group___w_s_f___e_f_s___a_p_i.html +0 -1025
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/group___w_s_f___e_f_s___a_p_i.js ...io_Stack_Cordio_Profiles/group___w_s_f___e_f_s___a_p_i.js +0 -82
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/group___w_s_f___m_a_t_h___a_p_i.html ...tack_Cordio_Profiles/group___w_s_f___m_a_t_h___a_p_i.html +0 -150
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/group___w_s_f___m_a_t_h___a_p_i.js ..._Stack_Cordio_Profiles/group___w_s_f___m_a_t_h___a_p_i.js +0 -5
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/group___w_s_f___m_s_g___a_p_i.html ..._Stack_Cordio_Profiles/group___w_s_f___m_s_g___a_p_i.html +0 -401
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/group___w_s_f___m_s_g___a_p_i.js ...io_Stack_Cordio_Profiles/group___w_s_f___m_s_g___a_p_i.js +0 -10
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/group___w_s_f___o_s___a_p_i.html ...io_Stack_Cordio_Profiles/group___w_s_f___o_s___a_p_i.html +0 -489
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/group___w_s_f___o_s___a_p_i.js ...rdio_Stack_Cordio_Profiles/group___w_s_f___o_s___a_p_i.js +0 -31
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/group___w_s_f___q_u_e_u_e___a_p_i.html ...ck_Cordio_Profiles/group___w_s_f___q_u_e_u_e___a_p_i.html +0 -412
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/group___w_s_f___q_u_e_u_e___a_p_i.js ...tack_Cordio_Profiles/group___w_s_f___q_u_e_u_e___a_p_i.js +0 -15
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/group___w_s_f___t_i_m_e_r___a_p_i.html ...ck_Cordio_Profiles/group___w_s_f___t_i_m_e_r___a_p_i.html +0 -378
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/group___w_s_f___t_i_m_e_r___a_p_i.js ...tack_Cordio_Profiles/group___w_s_f___t_i_m_e_r___a_p_i.js +0 -19
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/group___w_s_f___t_r_a_c_e___a_p_i.html ...ck_Cordio_Profiles/group___w_s_f___t_r_a_c_e___a_p_i.html +0 -901
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/group___w_s_f___t_r_a_c_e___a_p_i.js ...tack_Cordio_Profiles/group___w_s_f___t_r_a_c_e___a_p_i.js +0 -150
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/group___w_s_f___t_y_p_e_s.html ...rdio_Stack_Cordio_Profiles/group___w_s_f___t_y_p_e_s.html +0 -193
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/group___w_s_f___t_y_p_e_s.js ...Cordio_Stack_Cordio_Profiles/group___w_s_f___t_y_p_e_s.js +0 -14
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/group___w_s_f___u_t_i_l___a_p_i.html ...tack_Cordio_Profiles/group___w_s_f___u_t_i_l___a_p_i.html +0 -1888
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/group___w_s_f___u_t_i_l___a_p_i.js ..._Stack_Cordio_Profiles/group___w_s_f___u_t_i_l___a_p_i.js +0 -106
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/gyro__api_8h.html ...ation/html/Cordio_Stack_Cordio_Profiles/gyro__api_8h.html +0 -179
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/gyro__api_8h__incl.map .../html/Cordio_Stack_Cordio_Profiles/gyro__api_8h__incl.map +0 -5
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/gyro__api_8h__incl.md5 .../html/Cordio_Stack_Cordio_Profiles/gyro__api_8h__incl.md5 +0 -1
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/gyro__api_8h__incl.png .../html/Cordio_Stack_Cordio_Profiles/gyro__api_8h__incl.png +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/gyro__api_8h_source.html ...tml/Cordio_Stack_Cordio_Profiles/gyro__api_8h_source.html +0 -146
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/hci__api_8h.html ...tation/html/Cordio_Stack_Cordio_Profiles/hci__api_8h.html +0 -996
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/hci__api_8h__dep__incl.map ...l/Cordio_Stack_Cordio_Profiles/hci__api_8h__dep__incl.map +0 -39
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/hci__api_8h__dep__incl.md5 ...l/Cordio_Stack_Cordio_Profiles/hci__api_8h__dep__incl.md5 +0 -1
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/hci__api_8h__dep__incl.png ...l/Cordio_Stack_Cordio_Profiles/hci__api_8h__dep__incl.png +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/hci__api_8h__incl.map ...n/html/Cordio_Stack_Cordio_Profiles/hci__api_8h__incl.map +0 -7
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/hci__api_8h__incl.md5 ...n/html/Cordio_Stack_Cordio_Profiles/hci__api_8h__incl.md5 +0 -1
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/hci__api_8h__incl.png ...n/html/Cordio_Stack_Cordio_Profiles/hci__api_8h__incl.png +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/hci__api_8h_source.html ...html/Cordio_Stack_Cordio_Profiles/hci__api_8h_source.html +0 -613
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/hci__cmd_8h.html ...tation/html/Cordio_Stack_Cordio_Profiles/hci__cmd_8h.html +0 -298
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/hci__cmd_8h_source.html ...html/Cordio_Stack_Cordio_Profiles/hci__cmd_8h_source.html +0 -143
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/hci__core_8h.html ...ation/html/Cordio_Stack_Cordio_Profiles/hci__core_8h.html +0 -578
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/hci__core_8h__incl.map .../html/Cordio_Stack_Cordio_Profiles/hci__core_8h__incl.map +0 -9
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/hci__core_8h__incl.md5 .../html/Cordio_Stack_Cordio_Profiles/hci__core_8h__incl.md5 +0 -1
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/hci__core_8h__incl.png .../html/Cordio_Stack_Cordio_Profiles/hci__core_8h__incl.png +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/hci__core_8h_source.html ...tml/Cordio_Stack_Cordio_Profiles/hci__core_8h_source.html +0 -198
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/hci__defs_8h.html ...ation/html/Cordio_Stack_Cordio_Profiles/hci__defs_8h.html +0 -2807
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/hci__defs_8h__dep__incl.map .../Cordio_Stack_Cordio_Profiles/hci__defs_8h__dep__incl.map +0 -40
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/hci__defs_8h__dep__incl.md5 .../Cordio_Stack_Cordio_Profiles/hci__defs_8h__dep__incl.md5 +0 -1
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/hci__defs_8h__dep__incl.png .../Cordio_Stack_Cordio_Profiles/hci__defs_8h__dep__incl.png +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/hci__defs_8h_source.html ...tml/Cordio_Stack_Cordio_Profiles/hci__defs_8h_source.html +0 -135
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/hci__drv_8h.html ...tation/html/Cordio_Stack_Cordio_Profiles/hci__drv_8h.html +0 -261
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/hci__drv_8h_source.html ...html/Cordio_Stack_Cordio_Profiles/hci__drv_8h_source.html +0 -141
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/hci__evt_8h.html ...tation/html/Cordio_Stack_Cordio_Profiles/hci__evt_8h.html +0 -210
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/hci__evt_8h_source.html ...html/Cordio_Stack_Cordio_Profiles/hci__evt_8h_source.html +0 -152
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/hci__handler_8h.html ...on/html/Cordio_Stack_Cordio_Profiles/hci__handler_8h.html +0 -169
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/hci__handler_8h__incl.map ...ml/Cordio_Stack_Cordio_Profiles/hci__handler_8h__incl.map +0 -4
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/hci__handler_8h__incl.md5 ...ml/Cordio_Stack_Cordio_Profiles/hci__handler_8h__incl.md5 +0 -1
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/hci__handler_8h__incl.png ...ml/Cordio_Stack_Cordio_Profiles/hci__handler_8h__incl.png +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/hci__handler_8h_source.html .../Cordio_Stack_Cordio_Profiles/hci__handler_8h_source.html +0 -141
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/hci__tr_8h.html ...ntation/html/Cordio_Stack_Cordio_Profiles/hci__tr_8h.html +0 -288
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/hci__tr_8h_source.html .../html/Cordio_Stack_Cordio_Profiles/hci__tr_8h_source.html +0 -142
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/hid__api_8h.html ...tation/html/Cordio_Stack_Cordio_Profiles/hid__api_8h.html +0 -214
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/hid__api_8h_source.html ...html/Cordio_Stack_Cordio_Profiles/hid__api_8h_source.html +0 -158
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/hrpc__api_8h.html ...ation/html/Cordio_Stack_Cordio_Profiles/hrpc__api_8h.html +0 -201
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/hrpc__api_8h__incl.map .../html/Cordio_Stack_Cordio_Profiles/hrpc__api_8h__incl.map +0 -16
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/hrpc__api_8h__incl.md5 .../html/Cordio_Stack_Cordio_Profiles/hrpc__api_8h__incl.md5 +0 -1
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/hrpc__api_8h__incl.png .../html/Cordio_Stack_Cordio_Profiles/hrpc__api_8h__incl.png +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/hrpc__api_8h_source.html ...tml/Cordio_Stack_Cordio_Profiles/hrpc__api_8h_source.html +0 -148
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/hrps__api_8h.html ...ation/html/Cordio_Stack_Cordio_Profiles/hrps__api_8h.html +0 -200
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/hrps__api_8h__incl.map .../html/Cordio_Stack_Cordio_Profiles/hrps__api_8h__incl.map +0 -16
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/hrps__api_8h__incl.md5 .../html/Cordio_Stack_Cordio_Profiles/hrps__api_8h__incl.md5 +0 -1
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/hrps__api_8h__incl.png .../html/Cordio_Stack_Cordio_Profiles/hrps__api_8h__incl.png +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/hrps__api_8h_source.html ...tml/Cordio_Stack_Cordio_Profiles/hrps__api_8h_source.html +0 -152
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/htpc__api_8h.html ...ation/html/Cordio_Stack_Cordio_Profiles/htpc__api_8h.html +0 -200
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/htpc__api_8h__incl.map .../html/Cordio_Stack_Cordio_Profiles/htpc__api_8h__incl.map +0 -16
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/htpc__api_8h__incl.md5 .../html/Cordio_Stack_Cordio_Profiles/htpc__api_8h__incl.md5 +0 -1
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/htpc__api_8h__incl.png .../html/Cordio_Stack_Cordio_Profiles/htpc__api_8h__incl.png +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/htpc__api_8h_source.html ...tml/Cordio_Stack_Cordio_Profiles/htpc__api_8h_source.html +0 -148
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/htps__api_8h.html ...ation/html/Cordio_Stack_Cordio_Profiles/htps__api_8h.html +0 -203
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/htps__api_8h__incl.map .../html/Cordio_Stack_Cordio_Profiles/htps__api_8h__incl.map +0 -16
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/htps__api_8h__incl.md5 .../html/Cordio_Stack_Cordio_Profiles/htps__api_8h__incl.md5 +0 -1
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/htps__api_8h__incl.png .../html/Cordio_Stack_Cordio_Profiles/htps__api_8h__incl.png +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/htps__api_8h_source.html ...tml/Cordio_Stack_Cordio_Profiles/htps__api_8h_source.html +0 -151
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/index.html ...ocumentation/html/Cordio_Stack_Cordio_Profiles/index.html +0 -140
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/jquery.js ...documentation/html/Cordio_Stack_Cordio_Profiles/jquery.js +0 -68
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/l2c__api_8h.html ...tation/html/Cordio_Stack_Cordio_Profiles/l2c__api_8h.html +0 -359
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/l2c__api_8h__incl.map ...n/html/Cordio_Stack_Cordio_Profiles/l2c__api_8h__incl.map +0 -13
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/l2c__api_8h__incl.md5 ...n/html/Cordio_Stack_Cordio_Profiles/l2c__api_8h__incl.md5 +0 -1
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/l2c__api_8h__incl.png ...n/html/Cordio_Stack_Cordio_Profiles/l2c__api_8h__incl.png +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/l2c__api_8h_source.html ...html/Cordio_Stack_Cordio_Profiles/l2c__api_8h_source.html +0 -202
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/l2c__defs_8h.html ...ation/html/Cordio_Stack_Cordio_Profiles/l2c__defs_8h.html +0 -389
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/l2c__defs_8h__dep__incl.map .../Cordio_Stack_Cordio_Profiles/l2c__defs_8h__dep__incl.map +0 -3
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/l2c__defs_8h__dep__incl.md5 .../Cordio_Stack_Cordio_Profiles/l2c__defs_8h__dep__incl.md5 +0 -1
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/l2c__defs_8h__dep__incl.png .../Cordio_Stack_Cordio_Profiles/l2c__defs_8h__dep__incl.png +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/l2c__defs_8h_source.html ...tml/Cordio_Stack_Cordio_Profiles/l2c__defs_8h_source.html +0 -135
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/l2c__handler_8h.html ...on/html/Cordio_Stack_Cordio_Profiles/l2c__handler_8h.html +0 -175
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/l2c__handler_8h__incl.map ...ml/Cordio_Stack_Cordio_Profiles/l2c__handler_8h__incl.map +0 -4
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/l2c__handler_8h__incl.md5 ...ml/Cordio_Stack_Cordio_Profiles/l2c__handler_8h__incl.md5 +0 -1
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/l2c__handler_8h__incl.png ...ml/Cordio_Stack_Cordio_Profiles/l2c__handler_8h__incl.png +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/l2c__handler_8h_source.html .../Cordio_Stack_Cordio_Profiles/l2c__handler_8h_source.html +0 -143
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/mainpage_8md_source.html ...tml/Cordio_Stack_Cordio_Profiles/mainpage_8md_source.html +0 -135
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/md_doc_ble-host_1_abstract.html ...dio_Stack_Cordio_Profiles/md_doc_ble-host_1_abstract.html +0 -170
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/md_doc_ble-host_mainpage.html ...ordio_Stack_Cordio_Profiles/md_doc_ble-host_mainpage.html +0 -135
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/modules.html ...umentation/html/Cordio_Stack_Cordio_Profiles/modules.html +0 -240
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/modules.js ...ocumentation/html/Cordio_Stack_Cordio_Profiles/modules.js +0 -6
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/nav_f.png ...documentation/html/Cordio_Stack_Cordio_Profiles/nav_f.png +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/nav_g.png ...documentation/html/Cordio_Stack_Cordio_Profiles/nav_g.png +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/nav_h.png ...documentation/html/Cordio_Stack_Cordio_Profiles/nav_h.png +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/navtree.css ...cumentation/html/Cordio_Stack_Cordio_Profiles/navtree.css +0 -143
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/navtree.js ...ocumentation/html/Cordio_Stack_Cordio_Profiles/navtree.js +0 -523
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/navtreedata.js ...entation/html/Cordio_Stack_Cordio_Profiles/navtreedata.js +0 -40
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/navtreeindex0.js ...tation/html/Cordio_Stack_Cordio_Profiles/navtreeindex0.js +0 -253
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/navtreeindex1.js ...tation/html/Cordio_Stack_Cordio_Profiles/navtreeindex1.js +0 -253
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/navtreeindex10.js ...ation/html/Cordio_Stack_Cordio_Profiles/navtreeindex10.js +0 -253
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/navtreeindex11.js ...ation/html/Cordio_Stack_Cordio_Profiles/navtreeindex11.js +0 -253
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/navtreeindex12.js ...ation/html/Cordio_Stack_Cordio_Profiles/navtreeindex12.js +0 -253
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/navtreeindex13.js ...ation/html/Cordio_Stack_Cordio_Profiles/navtreeindex13.js +0 -253
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/navtreeindex14.js ...ation/html/Cordio_Stack_Cordio_Profiles/navtreeindex14.js +0 -253
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/navtreeindex15.js ...ation/html/Cordio_Stack_Cordio_Profiles/navtreeindex15.js +0 -253
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/navtreeindex16.js ...ation/html/Cordio_Stack_Cordio_Profiles/navtreeindex16.js +0 -253
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/navtreeindex17.js ...ation/html/Cordio_Stack_Cordio_Profiles/navtreeindex17.js +0 -253
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/navtreeindex18.js ...ation/html/Cordio_Stack_Cordio_Profiles/navtreeindex18.js +0 -253
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/navtreeindex19.js ...ation/html/Cordio_Stack_Cordio_Profiles/navtreeindex19.js +0 -149
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/navtreeindex2.js ...tation/html/Cordio_Stack_Cordio_Profiles/navtreeindex2.js +0 -253
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/navtreeindex3.js ...tation/html/Cordio_Stack_Cordio_Profiles/navtreeindex3.js +0 -253
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/navtreeindex4.js ...tation/html/Cordio_Stack_Cordio_Profiles/navtreeindex4.js +0 -253
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/navtreeindex5.js ...tation/html/Cordio_Stack_Cordio_Profiles/navtreeindex5.js +0 -253
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/navtreeindex6.js ...tation/html/Cordio_Stack_Cordio_Profiles/navtreeindex6.js +0 -253
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/navtreeindex7.js ...tation/html/Cordio_Stack_Cordio_Profiles/navtreeindex7.js +0 -253
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/navtreeindex8.js ...tation/html/Cordio_Stack_Cordio_Profiles/navtreeindex8.js +0 -253
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/navtreeindex9.js ...tation/html/Cordio_Stack_Cordio_Profiles/navtreeindex9.js +0 -253
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/open.png .../documentation/html/Cordio_Stack_Cordio_Profiles/open.png +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/operation_att_client.png ...tml/Cordio_Stack_Cordio_Profiles/operation_att_client.png +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/operation_att_client_discconfig.png ...Stack_Cordio_Profiles/operation_att_client_discconfig.png +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/operation_att_client_prepexecwrite.png ...ck_Cordio_Profiles/operation_att_client_prepexecwrite.png +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/operation_att_server.png ...tml/Cordio_Stack_Cordio_Profiles/operation_att_server.png +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/operation_dm_advscan.png ...tml/Cordio_Stack_Cordio_Profiles/operation_dm_advscan.png +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/operation_dm_connopenclose.png ...rdio_Stack_Cordio_Profiles/operation_dm_connopenclose.png +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/operation_dm_ecc.png ...on/html/Cordio_Stack_Cordio_Profiles/operation_dm_ecc.png +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/operation_dm_encrypt.png ...tml/Cordio_Stack_Cordio_Profiles/operation_dm_encrypt.png +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/operation_dm_oob.png ...on/html/Cordio_Stack_Cordio_Profiles/operation_dm_oob.png +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/operation_dm_pair.png ...n/html/Cordio_Stack_Cordio_Profiles/operation_dm_pair.png +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/operation_dm_privacy.png ...tml/Cordio_Stack_Cordio_Profiles/operation_dm_privacy.png +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/operation_hci_acl.png ...n/html/Cordio_Stack_Cordio_Profiles/operation_hci_acl.png +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/operation_hci_cmdevt.png ...tml/Cordio_Stack_Cordio_Profiles/operation_hci_cmdevt.png +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/operation_hci_reset.png ...html/Cordio_Stack_Cordio_Profiles/operation_hci_reset.png +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/operation_l2cap_connparamupdate.png ...Stack_Cordio_Profiles/operation_l2cap_connparamupdate.png +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/operation_l2cap_datapath.png ...Cordio_Stack_Cordio_Profiles/operation_l2cap_datapath.png +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/operation_l2cap_init.png ...tml/Cordio_Stack_Cordio_Profiles/operation_l2cap_init.png +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/pages.html ...ocumentation/html/Cordio_Stack_Cordio_Profiles/pages.html +0 -141
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/paspc__api_8h.html ...tion/html/Cordio_Stack_Cordio_Profiles/paspc__api_8h.html +0 -203
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/paspc__api_8h__incl.map ...html/Cordio_Stack_Cordio_Profiles/paspc__api_8h__incl.map +0 -16
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/paspc__api_8h__incl.md5 ...html/Cordio_Stack_Cordio_Profiles/paspc__api_8h__incl.md5 +0 -1
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/paspc__api_8h__incl.png ...html/Cordio_Stack_Cordio_Profiles/paspc__api_8h__incl.png +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/paspc__api_8h_source.html ...ml/Cordio_Stack_Cordio_Profiles/paspc__api_8h_source.html +0 -149
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/plxpc__api_8h.html ...tion/html/Cordio_Stack_Cordio_Profiles/plxpc__api_8h.html +0 -207
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/plxpc__api_8h__incl.map ...html/Cordio_Stack_Cordio_Profiles/plxpc__api_8h__incl.map +0 -16
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/plxpc__api_8h__incl.md5 ...html/Cordio_Stack_Cordio_Profiles/plxpc__api_8h__incl.md5 +0 -1
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/plxpc__api_8h__incl.png ...html/Cordio_Stack_Cordio_Profiles/plxpc__api_8h__incl.png +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/plxpc__api_8h_source.html ...ml/Cordio_Stack_Cordio_Profiles/plxpc__api_8h_source.html +0 -151
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/plxps__api_8h.html ...tion/html/Cordio_Stack_Cordio_Profiles/plxps__api_8h.html +0 -210
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/plxps__api_8h__incl.map ...html/Cordio_Stack_Cordio_Profiles/plxps__api_8h__incl.map +0 -3
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/plxps__api_8h__incl.md5 ...html/Cordio_Stack_Cordio_Profiles/plxps__api_8h__incl.md5 +0 -1
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/plxps__api_8h__incl.png ...html/Cordio_Stack_Cordio_Profiles/plxps__api_8h__incl.png +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/plxps__api_8h_source.html ...ml/Cordio_Stack_Cordio_Profiles/plxps__api_8h_source.html +0 -160
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/plxps__main_8h.html ...ion/html/Cordio_Stack_Cordio_Profiles/plxps__main_8h.html +0 -203
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/plxps__main_8h__incl.map ...tml/Cordio_Stack_Cordio_Profiles/plxps__main_8h__incl.map +0 -3
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/plxps__main_8h__incl.md5 ...tml/Cordio_Stack_Cordio_Profiles/plxps__main_8h__incl.md5 +0 -1
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/plxps__main_8h__incl.png ...tml/Cordio_Stack_Cordio_Profiles/plxps__main_8h__incl.png +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/plxps__main_8h_source.html ...l/Cordio_Stack_Cordio_Profiles/plxps__main_8h_source.html +0 -145
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/printComponentTabs.js ...n/html/Cordio_Stack_Cordio_Profiles/printComponentTabs.js +0 -93
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/print_8h.html ...mentation/html/Cordio_Stack_Cordio_Profiles/print_8h.html +0 -173
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/print_8h__incl.map ...tion/html/Cordio_Stack_Cordio_Profiles/print_8h__incl.map +0 -3
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/print_8h__incl.md5 ...tion/html/Cordio_Stack_Cordio_Profiles/print_8h__incl.md5 +0 -1
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/print_8h__incl.png ...tion/html/Cordio_Stack_Cordio_Profiles/print_8h__incl.png +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/print_8h_source.html ...on/html/Cordio_Stack_Cordio_Profiles/print_8h_source.html +0 -139
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/resize.js ...documentation/html/Cordio_Stack_Cordio_Profiles/resize.js +0 -97
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/rscp__api_8h.html ...ation/html/Cordio_Stack_Cordio_Profiles/rscp__api_8h.html +0 -197
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/rscp__api_8h_source.html ...tml/Cordio_Stack_Cordio_Profiles/rscp__api_8h_source.html +0 -143
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/scpps__api_8h.html ...tion/html/Cordio_Stack_Cordio_Profiles/scpps__api_8h.html +0 -188
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/scpps__api_8h__incl.map ...html/Cordio_Stack_Cordio_Profiles/scpps__api_8h__incl.map +0 -16
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/scpps__api_8h__incl.md5 ...html/Cordio_Stack_Cordio_Profiles/scpps__api_8h__incl.md5 +0 -1
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/scpps__api_8h__incl.png ...html/Cordio_Stack_Cordio_Profiles/scpps__api_8h__incl.png +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/scpps__api_8h_source.html ...ml/Cordio_Stack_Cordio_Profiles/scpps__api_8h_source.html +0 -143
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/search/all_0.html ...ation/html/Cordio_Stack_Cordio_Profiles/search/all_0.html +0 -26
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/search/all_0.js ...ntation/html/Cordio_Stack_Cordio_Profiles/search/all_0.js +0 -1006
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/search/all_1.html ...ation/html/Cordio_Stack_Cordio_Profiles/search/all_1.html +0 -26
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/search/all_1.js ...ntation/html/Cordio_Stack_Cordio_Profiles/search/all_1.js +0 -108
- No files found.
Too many changes to show.
To preserve performance only 1000 of 1000+ files are displayed.