fix(sdk): Plug in pre-release with BTLE support
Plug in a new SDK with improved BLE support (more source files available) Does not yet actually us BLE.
Showing
with
9990 additions
and
1913 deletions
+9990
-1913
- lib/sdk/Applications/EvKitExamples/BLE_beacon/Makefile lib/sdk/Applications/EvKitExamples/BLE_beacon/Makefile +92 -30
- lib/sdk/Applications/EvKitExamples/BLE_beacon/beacon_main.c lib/sdk/Applications/EvKitExamples/BLE_beacon/beacon_main.c +89 -633
- lib/sdk/Applications/EvKitExamples/BLE_beacon/config.mk lib/sdk/Applications/EvKitExamples/BLE_beacon/config.mk +12 -0
- lib/sdk/Applications/EvKitExamples/BLE_beacon/main.c lib/sdk/Applications/EvKitExamples/BLE_beacon/main.c +50 -87
- lib/sdk/Applications/EvKitExamples/BLE_beacon/stack_beacon.c lib/sdk/Applications/EvKitExamples/BLE_beacon/stack_beacon.c +90 -8
- lib/sdk/Applications/EvKitExamples/BLE_datc/Makefile lib/sdk/Applications/EvKitExamples/BLE_datc/Makefile +106 -7
- lib/sdk/Applications/EvKitExamples/BLE_datc/config.mk lib/sdk/Applications/EvKitExamples/BLE_datc/config.mk +15 -0
- lib/sdk/Applications/EvKitExamples/BLE_datc/datc_main.c lib/sdk/Applications/EvKitExamples/BLE_datc/datc_main.c +221 -15
- lib/sdk/Applications/EvKitExamples/BLE_datc/main.c lib/sdk/Applications/EvKitExamples/BLE_datc/main.c +49 -82
- lib/sdk/Applications/EvKitExamples/BLE_datc/stack_datc.c lib/sdk/Applications/EvKitExamples/BLE_datc/stack_datc.c +86 -9
- lib/sdk/Applications/EvKitExamples/BLE_dats/Makefile lib/sdk/Applications/EvKitExamples/BLE_dats/Makefile +92 -6
- lib/sdk/Applications/EvKitExamples/BLE_dats/config.mk lib/sdk/Applications/EvKitExamples/BLE_dats/config.mk +12 -0
- lib/sdk/Applications/EvKitExamples/BLE_dats/dats_main.c lib/sdk/Applications/EvKitExamples/BLE_dats/dats_main.c +113 -5
- lib/sdk/Applications/EvKitExamples/BLE_dats/main.c lib/sdk/Applications/EvKitExamples/BLE_dats/main.c +49 -86
- lib/sdk/Applications/EvKitExamples/BLE_dats/stack_dats.c lib/sdk/Applications/EvKitExamples/BLE_dats/stack_dats.c +85 -12
- lib/sdk/Applications/EvKitExamples/BLE_fit/Makefile lib/sdk/Applications/EvKitExamples/BLE_fit/Makefile +62 -7
- lib/sdk/Applications/EvKitExamples/BLE_fit/config.mk lib/sdk/Applications/EvKitExamples/BLE_fit/config.mk +6 -0
- lib/sdk/Applications/EvKitExamples/BLE_fit/fit_main.c lib/sdk/Applications/EvKitExamples/BLE_fit/fit_main.c +43 -7
- lib/sdk/Applications/EvKitExamples/BLE_fit/main.c lib/sdk/Applications/EvKitExamples/BLE_fit/main.c +124 -84
- lib/sdk/Applications/EvKitExamples/BLE_fit/stack_fit.c lib/sdk/Applications/EvKitExamples/BLE_fit/stack_fit.c +83 -10
- lib/sdk/Applications/EvKitExamples/BLE_fit/svc_dis.c lib/sdk/Applications/EvKitExamples/BLE_fit/svc_dis.c +0 -297
- lib/sdk/Applications/EvKitExamples/BLE_hci_uart/.cproject lib/sdk/Applications/EvKitExamples/BLE_hci_uart/.cproject +117 -0
- lib/sdk/Applications/EvKitExamples/BLE_hci_uart/.project lib/sdk/Applications/EvKitExamples/BLE_hci_uart/.project +26 -0
- lib/sdk/Applications/EvKitExamples/BLE_hci_uart/.settings/language.settings.xml ...vKitExamples/BLE_hci_uart/.settings/language.settings.xml +10 -0
- lib/sdk/Applications/EvKitExamples/BLE_hci_uart/ARM/Abstract.txt .../Applications/EvKitExamples/BLE_hci_uart/ARM/Abstract.txt +1 -0
- lib/sdk/Applications/EvKitExamples/BLE_hci_uart/ARM/BTLE_hci_uart.uvoptx ...tions/EvKitExamples/BLE_hci_uart/ARM/BTLE_hci_uart.uvoptx +280 -0
- lib/sdk/Applications/EvKitExamples/BLE_hci_uart/ARM/BTLE_hci_uart.uvprojx ...ions/EvKitExamples/BLE_hci_uart/ARM/BTLE_hci_uart.uvprojx +522 -0
- lib/sdk/Applications/EvKitExamples/BLE_hci_uart/ARM/ble_sdma.sct .../Applications/EvKitExamples/BLE_hci_uart/ARM/ble_sdma.sct +45 -0
- lib/sdk/Applications/EvKitExamples/BLE_hci_uart/BLE_hci_uart.launch ...plications/EvKitExamples/BLE_hci_uart/BLE_hci_uart.launch +62 -0
- lib/sdk/Applications/EvKitExamples/BLE_hci_uart/IAR/BLE_hci_uart.ewd ...lications/EvKitExamples/BLE_hci_uart/IAR/BLE_hci_uart.ewd +2948 -0
- lib/sdk/Applications/EvKitExamples/BLE_hci_uart/IAR/BLE_hci_uart.ewp ...lications/EvKitExamples/BLE_hci_uart/IAR/BLE_hci_uart.ewp +2388 -0
- lib/sdk/Applications/EvKitExamples/BLE_hci_uart/Makefile lib/sdk/Applications/EvKitExamples/BLE_hci_uart/Makefile +152 -0
- lib/sdk/Applications/EvKitExamples/BLE_hci_uart/chci_drv.c lib/sdk/Applications/EvKitExamples/BLE_hci_uart/chci_drv.c +159 -0
- lib/sdk/Applications/EvKitExamples/BLE_hci_uart/config.mk lib/sdk/Applications/EvKitExamples/BLE_hci_uart/config.mk +12 -0
- lib/sdk/Applications/EvKitExamples/BLE_hci_uart/main.c lib/sdk/Applications/EvKitExamples/BLE_hci_uart/main.c +174 -0
- lib/sdk/Applications/EvKitExamples/BLE_hci_uart/stack_setup.c ...sdk/Applications/EvKitExamples/BLE_hci_uart/stack_setup.c +116 -0
- lib/sdk/Applications/EvKitExamples/BLE_scanner/Makefile lib/sdk/Applications/EvKitExamples/BLE_scanner/Makefile +106 -9
- lib/sdk/Applications/EvKitExamples/BLE_scanner/app_config.h lib/sdk/Applications/EvKitExamples/BLE_scanner/app_config.h +0 -11
- lib/sdk/Applications/EvKitExamples/BLE_scanner/config.mk lib/sdk/Applications/EvKitExamples/BLE_scanner/config.mk +15 -0
- lib/sdk/Applications/EvKitExamples/BLE_scanner/main.c lib/sdk/Applications/EvKitExamples/BLE_scanner/main.c +80 -117
- lib/sdk/Applications/EvKitExamples/BLE_scanner/scanner_api.h lib/sdk/Applications/EvKitExamples/BLE_scanner/scanner_api.h +5 -14
- lib/sdk/Applications/EvKitExamples/BLE_scanner/scanner_main.c ...sdk/Applications/EvKitExamples/BLE_scanner/scanner_main.c +162 -168
- lib/sdk/Applications/EvKitExamples/BLE_scanner/stack_scanner.c ...dk/Applications/EvKitExamples/BLE_scanner/stack_scanner.c +86 -10
- lib/sdk/Applications/EvKitExamples/ECC/Makefile lib/sdk/Applications/EvKitExamples/ECC/Makefile +4 -1
- lib/sdk/Applications/EvKitExamples/ECC/main.c lib/sdk/Applications/EvKitExamples/ECC/main.c +124 -36
- lib/sdk/Applications/EvKitExamples/LP/main.c lib/sdk/Applications/EvKitExamples/LP/main.c +3 -3
- lib/sdk/Applications/EvKitExamples/RPU/.cproject lib/sdk/Applications/EvKitExamples/RPU/.cproject +107 -0
- lib/sdk/Applications/EvKitExamples/RPU/.project lib/sdk/Applications/EvKitExamples/RPU/.project +26 -0
- lib/sdk/Applications/EvKitExamples/RPU/.settings/language.settings.xml ...cations/EvKitExamples/RPU/.settings/language.settings.xml +10 -0
- lib/sdk/Applications/EvKitExamples/RPU/Makefile lib/sdk/Applications/EvKitExamples/RPU/Makefile +118 -0
- lib/sdk/Applications/EvKitExamples/RPU/RPU.launch lib/sdk/Applications/EvKitExamples/RPU/RPU.launch +64 -0
- lib/sdk/Applications/EvKitExamples/RPU/main.c lib/sdk/Applications/EvKitExamples/RPU/main.c +112 -0
- lib/sdk/Applications/EvKitExamples/SDHC_FAT/Makefile lib/sdk/Applications/EvKitExamples/SDHC_FAT/Makefile +125 -124
- lib/sdk/Applications/EvKitExamples/SDHC_FAT/main.c lib/sdk/Applications/EvKitExamples/SDHC_FAT/main.c +31 -17
- lib/sdk/Applications/EvKitExamples/SDHC_Raw/Makefile lib/sdk/Applications/EvKitExamples/SDHC_Raw/Makefile +9 -8
- lib/sdk/Applications/EvKitExamples/USB_MassStorage/descriptors.h .../Applications/EvKitExamples/USB_MassStorage/descriptors.h +63 -3
- lib/sdk/Applications/EvKitExamples/USB_MassStorage/main.c lib/sdk/Applications/EvKitExamples/USB_MassStorage/main.c +37 -7
- lib/sdk/Libraries/BTLE/btle.mk lib/sdk/Libraries/BTLE/btle.mk +212 -0
- lib/sdk/Libraries/BTLE/cordio-phy.a lib/sdk/Libraries/BTLE/cordio-phy.a +0 -0
- 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 -0
- lib/sdk/Libraries/BTLE/documentation/cordio_stack_readme.md lib/sdk/Libraries/BTLE/documentation/cordio_stack_readme.md +0 -0
- 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 -0
- 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 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/annotated.html ...entation/html/Cordio_Stack_Cordio_Profiles/annotated.html +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/annotated.js ...umentation/html/Cordio_Stack_Cordio_Profiles/annotated.js +0 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/bstream_8h.html ...ntation/html/Cordio_Stack_Cordio_Profiles/bstream_8h.html +0 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/calc128_8h.html ...ntation/html/Cordio_Stack_Cordio_Profiles/calc128_8h.html +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/calc128_8h_source.html .../html/Cordio_Stack_Cordio_Profiles/calc128_8h_source.html +0 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/classes.html ...umentation/html/Cordio_Stack_Cordio_Profiles/classes.html +0 -0
- 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 -0
- 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 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/crc32_8h.html ...mentation/html/Cordio_Stack_Cordio_Profiles/crc32_8h.html +0 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_000001_000002.html .../html/Cordio_Stack_Cordio_Profiles/dir_000001_000002.html +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_000001_000043.html .../html/Cordio_Stack_Cordio_Profiles/dir_000001_000043.html +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_000001_000046.html .../html/Cordio_Stack_Cordio_Profiles/dir_000001_000046.html +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_000006_000000.html .../html/Cordio_Stack_Cordio_Profiles/dir_000006_000000.html +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_000006_000046.html .../html/Cordio_Stack_Cordio_Profiles/dir_000006_000046.html +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_000007_000000.html .../html/Cordio_Stack_Cordio_Profiles/dir_000007_000000.html +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_000007_000046.html .../html/Cordio_Stack_Cordio_Profiles/dir_000007_000046.html +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_000008_000000.html .../html/Cordio_Stack_Cordio_Profiles/dir_000008_000000.html +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_000008_000006.html .../html/Cordio_Stack_Cordio_Profiles/dir_000008_000006.html +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_000008_000046.html .../html/Cordio_Stack_Cordio_Profiles/dir_000008_000046.html +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_000009_000000.html .../html/Cordio_Stack_Cordio_Profiles/dir_000009_000000.html +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_000009_000006.html .../html/Cordio_Stack_Cordio_Profiles/dir_000009_000006.html +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_000009_000042.html .../html/Cordio_Stack_Cordio_Profiles/dir_000009_000042.html +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_000009_000046.html .../html/Cordio_Stack_Cordio_Profiles/dir_000009_000046.html +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_000010_000000.html .../html/Cordio_Stack_Cordio_Profiles/dir_000010_000000.html +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_000011_000000.html .../html/Cordio_Stack_Cordio_Profiles/dir_000011_000000.html +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_000011_000046.html .../html/Cordio_Stack_Cordio_Profiles/dir_000011_000046.html +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_000012_000000.html .../html/Cordio_Stack_Cordio_Profiles/dir_000012_000000.html +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_000013_000000.html .../html/Cordio_Stack_Cordio_Profiles/dir_000013_000000.html +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_000013_000046.html .../html/Cordio_Stack_Cordio_Profiles/dir_000013_000046.html +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_000016_000000.html .../html/Cordio_Stack_Cordio_Profiles/dir_000016_000000.html +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_000017_000000.html .../html/Cordio_Stack_Cordio_Profiles/dir_000017_000000.html +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_000018_000000.html .../html/Cordio_Stack_Cordio_Profiles/dir_000018_000000.html +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_000019_000000.html .../html/Cordio_Stack_Cordio_Profiles/dir_000019_000000.html +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_000020_000000.html .../html/Cordio_Stack_Cordio_Profiles/dir_000020_000000.html +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_000021_000006.html .../html/Cordio_Stack_Cordio_Profiles/dir_000021_000006.html +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_000023_000000.html .../html/Cordio_Stack_Cordio_Profiles/dir_000023_000000.html +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_000024_000000.html .../html/Cordio_Stack_Cordio_Profiles/dir_000024_000000.html +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_000024_000046.html .../html/Cordio_Stack_Cordio_Profiles/dir_000024_000046.html +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_000025_000000.html .../html/Cordio_Stack_Cordio_Profiles/dir_000025_000000.html +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_000026_000000.html .../html/Cordio_Stack_Cordio_Profiles/dir_000026_000000.html +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_000026_000046.html .../html/Cordio_Stack_Cordio_Profiles/dir_000026_000046.html +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_000028_000000.html .../html/Cordio_Stack_Cordio_Profiles/dir_000028_000000.html +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_000029_000000.html .../html/Cordio_Stack_Cordio_Profiles/dir_000029_000000.html +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_000030_000006.html .../html/Cordio_Stack_Cordio_Profiles/dir_000030_000006.html +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_000032_000000.html .../html/Cordio_Stack_Cordio_Profiles/dir_000032_000000.html +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_000033_000046.html .../html/Cordio_Stack_Cordio_Profiles/dir_000033_000046.html +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_000034_000000.html .../html/Cordio_Stack_Cordio_Profiles/dir_000034_000000.html +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_000035_000000.html .../html/Cordio_Stack_Cordio_Profiles/dir_000035_000000.html +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_000036_000000.html .../html/Cordio_Stack_Cordio_Profiles/dir_000036_000000.html +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_000036_000042.html .../html/Cordio_Stack_Cordio_Profiles/dir_000036_000042.html +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_000036_000046.html .../html/Cordio_Stack_Cordio_Profiles/dir_000036_000046.html +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_000038_000000.html .../html/Cordio_Stack_Cordio_Profiles/dir_000038_000000.html +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_000038_000027.html .../html/Cordio_Stack_Cordio_Profiles/dir_000038_000027.html +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_000039_000000.html .../html/Cordio_Stack_Cordio_Profiles/dir_000039_000000.html +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_000040_000000.html .../html/Cordio_Stack_Cordio_Profiles/dir_000040_000000.html +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_000041_000000.html .../html/Cordio_Stack_Cordio_Profiles/dir_000041_000000.html +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_000041_000046.html .../html/Cordio_Stack_Cordio_Profiles/dir_000041_000046.html +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_000042_000000.html .../html/Cordio_Stack_Cordio_Profiles/dir_000042_000000.html +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_000042_000009.html .../html/Cordio_Stack_Cordio_Profiles/dir_000042_000009.html +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_000042_000027.html .../html/Cordio_Stack_Cordio_Profiles/dir_000042_000027.html +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_000042_000046.html .../html/Cordio_Stack_Cordio_Profiles/dir_000042_000046.html +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_01fd9461b2b9cb822fcd1cc455958049.html ...Cordio_Profiles/dir_01fd9461b2b9cb822fcd1cc455958049.html +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_01fd9461b2b9cb822fcd1cc455958049_dep.map ...dio_Profiles/dir_01fd9461b2b9cb822fcd1cc455958049_dep.map +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_01fd9461b2b9cb822fcd1cc455958049_dep.md5 ...dio_Profiles/dir_01fd9461b2b9cb822fcd1cc455958049_dep.md5 +0 -0
- 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 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_0650746a0f39978eb6a359493bea921f_dep.map ...dio_Profiles/dir_0650746a0f39978eb6a359493bea921f_dep.map +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_0650746a0f39978eb6a359493bea921f_dep.md5 ...dio_Profiles/dir_0650746a0f39978eb6a359493bea921f_dep.md5 +0 -0
- 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 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_14240524c92faaaceebe060377e88921.html ...Cordio_Profiles/dir_14240524c92faaaceebe060377e88921.html +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_1968977382820ccc9307df87bd9a655a.html ...Cordio_Profiles/dir_1968977382820ccc9307df87bd9a655a.html +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_1968977382820ccc9307df87bd9a655a_dep.map ...dio_Profiles/dir_1968977382820ccc9307df87bd9a655a_dep.map +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_1968977382820ccc9307df87bd9a655a_dep.md5 ...dio_Profiles/dir_1968977382820ccc9307df87bd9a655a_dep.md5 +0 -0
- 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 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_1d2c147e5b33cac31c32dee8eba74f92_dep.map ...dio_Profiles/dir_1d2c147e5b33cac31c32dee8eba74f92_dep.map +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_1d2c147e5b33cac31c32dee8eba74f92_dep.md5 ...dio_Profiles/dir_1d2c147e5b33cac31c32dee8eba74f92_dep.md5 +0 -0
- 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 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_2448ffd17b33850a59249216ac62359d.html ...Cordio_Profiles/dir_2448ffd17b33850a59249216ac62359d.html +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_24e52f82d660f93e0745d24e71239de7.html ...Cordio_Profiles/dir_24e52f82d660f93e0745d24e71239de7.html +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_24e52f82d660f93e0745d24e71239de7_dep.map ...dio_Profiles/dir_24e52f82d660f93e0745d24e71239de7_dep.map +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_24e52f82d660f93e0745d24e71239de7_dep.md5 ...dio_Profiles/dir_24e52f82d660f93e0745d24e71239de7_dep.md5 +0 -0
- 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 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_267301a7818b265e178dd1678b5be7da_dep.map ...dio_Profiles/dir_267301a7818b265e178dd1678b5be7da_dep.map +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_267301a7818b265e178dd1678b5be7da_dep.md5 ...dio_Profiles/dir_267301a7818b265e178dd1678b5be7da_dep.md5 +0 -0
- 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 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_27545987a30c1ce2d7af2bd86c78ac21_dep.map ...dio_Profiles/dir_27545987a30c1ce2d7af2bd86c78ac21_dep.map +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_27545987a30c1ce2d7af2bd86c78ac21_dep.md5 ...dio_Profiles/dir_27545987a30c1ce2d7af2bd86c78ac21_dep.md5 +0 -0
- 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 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_28e746fa2b2d847c24c15cb9cf47061c_dep.map ...dio_Profiles/dir_28e746fa2b2d847c24c15cb9cf47061c_dep.map +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_28e746fa2b2d847c24c15cb9cf47061c_dep.md5 ...dio_Profiles/dir_28e746fa2b2d847c24c15cb9cf47061c_dep.md5 +0 -0
- 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 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_2e1d5ae6e89575640b5c11b2b0dd7828_dep.map ...dio_Profiles/dir_2e1d5ae6e89575640b5c11b2b0dd7828_dep.map +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_2e1d5ae6e89575640b5c11b2b0dd7828_dep.md5 ...dio_Profiles/dir_2e1d5ae6e89575640b5c11b2b0dd7828_dep.md5 +0 -0
- 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 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_35094516b35a914485489400265ef606_dep.map ...dio_Profiles/dir_35094516b35a914485489400265ef606_dep.map +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_35094516b35a914485489400265ef606_dep.md5 ...dio_Profiles/dir_35094516b35a914485489400265ef606_dep.md5 +0 -0
- 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 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_39966f1b23fb9119d0e2e84328c29c92_dep.map ...dio_Profiles/dir_39966f1b23fb9119d0e2e84328c29c92_dep.map +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_39966f1b23fb9119d0e2e84328c29c92_dep.md5 ...dio_Profiles/dir_39966f1b23fb9119d0e2e84328c29c92_dep.md5 +0 -0
- 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 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_3af3f687dce0018c3eca5f89eed04794_dep.map ...dio_Profiles/dir_3af3f687dce0018c3eca5f89eed04794_dep.map +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_3af3f687dce0018c3eca5f89eed04794_dep.md5 ...dio_Profiles/dir_3af3f687dce0018c3eca5f89eed04794_dep.md5 +0 -0
- 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 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_3b413abaffb582733343166118210417_dep.map ...dio_Profiles/dir_3b413abaffb582733343166118210417_dep.map +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_3b413abaffb582733343166118210417_dep.md5 ...dio_Profiles/dir_3b413abaffb582733343166118210417_dep.md5 +0 -0
- 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 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_4b2efa8dde6080c56d9829d057fd39df.html ...Cordio_Profiles/dir_4b2efa8dde6080c56d9829d057fd39df.html +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_4f486d1e72826ae9c58bf305b51ae16e.html ...Cordio_Profiles/dir_4f486d1e72826ae9c58bf305b51ae16e.html +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_4f486d1e72826ae9c58bf305b51ae16e_dep.map ...dio_Profiles/dir_4f486d1e72826ae9c58bf305b51ae16e_dep.map +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_4f486d1e72826ae9c58bf305b51ae16e_dep.md5 ...dio_Profiles/dir_4f486d1e72826ae9c58bf305b51ae16e_dep.md5 +0 -0
- 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 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_5cf26327824e451e1022868dc841ad11_dep.map ...dio_Profiles/dir_5cf26327824e451e1022868dc841ad11_dep.map +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_5cf26327824e451e1022868dc841ad11_dep.md5 ...dio_Profiles/dir_5cf26327824e451e1022868dc841ad11_dep.md5 +0 -0
- 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 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_64d72f811608cc5536d7defd83dd8929_dep.map ...dio_Profiles/dir_64d72f811608cc5536d7defd83dd8929_dep.map +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_64d72f811608cc5536d7defd83dd8929_dep.md5 ...dio_Profiles/dir_64d72f811608cc5536d7defd83dd8929_dep.md5 +0 -0
- 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 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_6a5ce93f472888e0793f2844156cb0e2_dep.map ...dio_Profiles/dir_6a5ce93f472888e0793f2844156cb0e2_dep.map +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_6a5ce93f472888e0793f2844156cb0e2_dep.md5 ...dio_Profiles/dir_6a5ce93f472888e0793f2844156cb0e2_dep.md5 +0 -0
- 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 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_7108d5013b197beb2004eacb657ed2e6_dep.map ...dio_Profiles/dir_7108d5013b197beb2004eacb657ed2e6_dep.map +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_7108d5013b197beb2004eacb657ed2e6_dep.md5 ...dio_Profiles/dir_7108d5013b197beb2004eacb657ed2e6_dep.md5 +0 -0
- 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 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_7474d848c2a75fd8baba724a49ab5497.html ...Cordio_Profiles/dir_7474d848c2a75fd8baba724a49ab5497.html +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_7474d848c2a75fd8baba724a49ab5497_dep.map ...dio_Profiles/dir_7474d848c2a75fd8baba724a49ab5497_dep.map +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_7474d848c2a75fd8baba724a49ab5497_dep.md5 ...dio_Profiles/dir_7474d848c2a75fd8baba724a49ab5497_dep.md5 +0 -0
- 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 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_777b5b972e7bb8c05bd1df2cd2c64fa8.html ...Cordio_Profiles/dir_777b5b972e7bb8c05bd1df2cd2c64fa8.html +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_777b5b972e7bb8c05bd1df2cd2c64fa8_dep.map ...dio_Profiles/dir_777b5b972e7bb8c05bd1df2cd2c64fa8_dep.map +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_777b5b972e7bb8c05bd1df2cd2c64fa8_dep.md5 ...dio_Profiles/dir_777b5b972e7bb8c05bd1df2cd2c64fa8_dep.md5 +0 -0
- 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 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_792ecca4f12bd5a21f99abff978ab3e7_dep.map ...dio_Profiles/dir_792ecca4f12bd5a21f99abff978ab3e7_dep.map +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_792ecca4f12bd5a21f99abff978ab3e7_dep.md5 ...dio_Profiles/dir_792ecca4f12bd5a21f99abff978ab3e7_dep.md5 +0 -0
- 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 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_7975def220458f17c7281fab566ce246_dep.map ...dio_Profiles/dir_7975def220458f17c7281fab566ce246_dep.map +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_7975def220458f17c7281fab566ce246_dep.md5 ...dio_Profiles/dir_7975def220458f17c7281fab566ce246_dep.md5 +0 -0
- 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 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_7bfed3e367d92941728cc185aee9127b_dep.map ...dio_Profiles/dir_7bfed3e367d92941728cc185aee9127b_dep.map +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_7bfed3e367d92941728cc185aee9127b_dep.md5 ...dio_Profiles/dir_7bfed3e367d92941728cc185aee9127b_dep.md5 +0 -0
- 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 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_84e488d8a84e65c3c9b677a5dd7a953b_dep.map ...dio_Profiles/dir_84e488d8a84e65c3c9b677a5dd7a953b_dep.map +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_84e488d8a84e65c3c9b677a5dd7a953b_dep.md5 ...dio_Profiles/dir_84e488d8a84e65c3c9b677a5dd7a953b_dep.md5 +0 -0
- 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 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_8d20de1f413d615a571d8da343a68b55_dep.map ...dio_Profiles/dir_8d20de1f413d615a571d8da343a68b55_dep.map +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_8d20de1f413d615a571d8da343a68b55_dep.md5 ...dio_Profiles/dir_8d20de1f413d615a571d8da343a68b55_dep.md5 +0 -0
- 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 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_91857b504f82a56ca001dd341fe65f25_dep.map ...dio_Profiles/dir_91857b504f82a56ca001dd341fe65f25_dep.map +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_91857b504f82a56ca001dd341fe65f25_dep.md5 ...dio_Profiles/dir_91857b504f82a56ca001dd341fe65f25_dep.md5 +0 -0
- 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 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_9c6c1d5b688df0f8e1edfb086967f595_dep.map ...dio_Profiles/dir_9c6c1d5b688df0f8e1edfb086967f595_dep.map +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_9c6c1d5b688df0f8e1edfb086967f595_dep.md5 ...dio_Profiles/dir_9c6c1d5b688df0f8e1edfb086967f595_dep.md5 +0 -0
- 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 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_9cd61716eb232fce02341fdda60380b1_dep.map ...dio_Profiles/dir_9cd61716eb232fce02341fdda60380b1_dep.map +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_9cd61716eb232fce02341fdda60380b1_dep.md5 ...dio_Profiles/dir_9cd61716eb232fce02341fdda60380b1_dep.md5 +0 -0
- 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 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_9ee610406381032583c9b2ea366d83ef_dep.map ...dio_Profiles/dir_9ee610406381032583c9b2ea366d83ef_dep.map +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_9ee610406381032583c9b2ea366d83ef_dep.md5 ...dio_Profiles/dir_9ee610406381032583c9b2ea366d83ef_dep.md5 +0 -0
- 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 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_a946ce966c8139b039e16cc0d63039c1_dep.map ...dio_Profiles/dir_a946ce966c8139b039e16cc0d63039c1_dep.map +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_a946ce966c8139b039e16cc0d63039c1_dep.md5 ...dio_Profiles/dir_a946ce966c8139b039e16cc0d63039c1_dep.md5 +0 -0
- 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 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_afde2436970dac88923b1f77403d2006.html ...Cordio_Profiles/dir_afde2436970dac88923b1f77403d2006.html +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_afde2436970dac88923b1f77403d2006_dep.map ...dio_Profiles/dir_afde2436970dac88923b1f77403d2006_dep.map +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_afde2436970dac88923b1f77403d2006_dep.md5 ...dio_Profiles/dir_afde2436970dac88923b1f77403d2006_dep.md5 +0 -0
- 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 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_b396dc28dbe644a9444597cdccdfe82e_dep.map ...dio_Profiles/dir_b396dc28dbe644a9444597cdccdfe82e_dep.map +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_b396dc28dbe644a9444597cdccdfe82e_dep.md5 ...dio_Profiles/dir_b396dc28dbe644a9444597cdccdfe82e_dep.md5 +0 -0
- 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 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_bd209c9d3074d3795b66a9dd59ecf791_dep.map ...dio_Profiles/dir_bd209c9d3074d3795b66a9dd59ecf791_dep.map +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_bd209c9d3074d3795b66a9dd59ecf791_dep.md5 ...dio_Profiles/dir_bd209c9d3074d3795b66a9dd59ecf791_dep.md5 +0 -0
- 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 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_cc534d0ae49bf8e5d6f4ee87a58ea916.html ...Cordio_Profiles/dir_cc534d0ae49bf8e5d6f4ee87a58ea916.html +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_cc534d0ae49bf8e5d6f4ee87a58ea916_dep.map ...dio_Profiles/dir_cc534d0ae49bf8e5d6f4ee87a58ea916_dep.map +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_cc534d0ae49bf8e5d6f4ee87a58ea916_dep.md5 ...dio_Profiles/dir_cc534d0ae49bf8e5d6f4ee87a58ea916_dep.md5 +0 -0
- 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 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_d80f2d3e4e836961689c466eb7625f53_dep.map ...dio_Profiles/dir_d80f2d3e4e836961689c466eb7625f53_dep.map +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_d80f2d3e4e836961689c466eb7625f53_dep.md5 ...dio_Profiles/dir_d80f2d3e4e836961689c466eb7625f53_dep.md5 +0 -0
- 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 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_e4413fdd10501f0f4b65f615de72d05f.html ...Cordio_Profiles/dir_e4413fdd10501f0f4b65f615de72d05f.html +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_e5afad07a6e294c18dad619513d97382.html ...Cordio_Profiles/dir_e5afad07a6e294c18dad619513d97382.html +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_e8bf73041848d8a97ff9b0f24e24824e.html ...Cordio_Profiles/dir_e8bf73041848d8a97ff9b0f24e24824e.html +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_e8bf73041848d8a97ff9b0f24e24824e_dep.map ...dio_Profiles/dir_e8bf73041848d8a97ff9b0f24e24824e_dep.map +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_e8bf73041848d8a97ff9b0f24e24824e_dep.md5 ...dio_Profiles/dir_e8bf73041848d8a97ff9b0f24e24824e_dep.md5 +0 -0
- 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 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_ebd89e2215d9fe75dd049fd7977024ba_dep.map ...dio_Profiles/dir_ebd89e2215d9fe75dd049fd7977024ba_dep.map +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/dir_ebd89e2215d9fe75dd049fd7977024ba_dep.md5 ...dio_Profiles/dir_ebd89e2215d9fe75dd049fd7977024ba_dep.md5 +0 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/files.html ...ocumentation/html/Cordio_Stack_Cordio_Profiles/files.html +0 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/functions_b.html ...tation/html/Cordio_Stack_Cordio_Profiles/functions_b.html +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/functions_c.html ...tation/html/Cordio_Stack_Cordio_Profiles/functions_c.html +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/functions_d.html ...tation/html/Cordio_Stack_Cordio_Profiles/functions_d.html +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/functions_dup.js ...tation/html/Cordio_Stack_Cordio_Profiles/functions_dup.js +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/functions_e.html ...tation/html/Cordio_Stack_Cordio_Profiles/functions_e.html +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/functions_f.html ...tation/html/Cordio_Stack_Cordio_Profiles/functions_f.html +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/functions_h.html ...tation/html/Cordio_Stack_Cordio_Profiles/functions_h.html +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/functions_i.html ...tation/html/Cordio_Stack_Cordio_Profiles/functions_i.html +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/functions_k.html ...tation/html/Cordio_Stack_Cordio_Profiles/functions_k.html +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/functions_l.html ...tation/html/Cordio_Stack_Cordio_Profiles/functions_l.html +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/functions_m.html ...tation/html/Cordio_Stack_Cordio_Profiles/functions_m.html +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/functions_n.html ...tation/html/Cordio_Stack_Cordio_Profiles/functions_n.html +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/functions_o.html ...tation/html/Cordio_Stack_Cordio_Profiles/functions_o.html +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/functions_p.html ...tation/html/Cordio_Stack_Cordio_Profiles/functions_p.html +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/functions_q.html ...tation/html/Cordio_Stack_Cordio_Profiles/functions_q.html +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/functions_r.html ...tation/html/Cordio_Stack_Cordio_Profiles/functions_r.html +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/functions_s.html ...tation/html/Cordio_Stack_Cordio_Profiles/functions_s.html +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/functions_t.html ...tation/html/Cordio_Stack_Cordio_Profiles/functions_t.html +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/functions_u.html ...tation/html/Cordio_Stack_Cordio_Profiles/functions_u.html +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/functions_v.html ...tation/html/Cordio_Stack_Cordio_Profiles/functions_v.html +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/functions_vars.html ...ion/html/Cordio_Stack_Cordio_Profiles/functions_vars.html +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/functions_vars.js ...ation/html/Cordio_Stack_Cordio_Profiles/functions_vars.js +0 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/functions_w.html ...tation/html/Cordio_Stack_Cordio_Profiles/functions_w.html +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/functions_y.html ...tation/html/Cordio_Stack_Cordio_Profiles/functions_y.html +0 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/globals.html ...umentation/html/Cordio_Stack_Cordio_Profiles/globals.html +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/globals_b.html ...entation/html/Cordio_Stack_Cordio_Profiles/globals_b.html +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/globals_c.html ...entation/html/Cordio_Stack_Cordio_Profiles/globals_c.html +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/globals_d.html ...entation/html/Cordio_Stack_Cordio_Profiles/globals_d.html +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/globals_defs.html ...ation/html/Cordio_Stack_Cordio_Profiles/globals_defs.html +0 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/globals_eval.html ...ation/html/Cordio_Stack_Cordio_Profiles/globals_eval.html +0 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/globals_f.html ...entation/html/Cordio_Stack_Cordio_Profiles/globals_f.html +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/globals_func.html ...ation/html/Cordio_Stack_Cordio_Profiles/globals_func.html +0 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/globals_g.html ...entation/html/Cordio_Stack_Cordio_Profiles/globals_g.html +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/globals_h.html ...entation/html/Cordio_Stack_Cordio_Profiles/globals_h.html +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/globals_i.html ...entation/html/Cordio_Stack_Cordio_Profiles/globals_i.html +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/globals_l.html ...entation/html/Cordio_Stack_Cordio_Profiles/globals_l.html +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/globals_n.html ...entation/html/Cordio_Stack_Cordio_Profiles/globals_n.html +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/globals_p.html ...entation/html/Cordio_Stack_Cordio_Profiles/globals_p.html +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/globals_r.html ...entation/html/Cordio_Stack_Cordio_Profiles/globals_r.html +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/globals_s.html ...entation/html/Cordio_Stack_Cordio_Profiles/globals_s.html +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/globals_t.html ...entation/html/Cordio_Stack_Cordio_Profiles/globals_t.html +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/globals_type.html ...ation/html/Cordio_Stack_Cordio_Profiles/globals_type.html +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/globals_u.html ...entation/html/Cordio_Stack_Cordio_Profiles/globals_u.html +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/globals_vars.html ...ation/html/Cordio_Stack_Cordio_Profiles/globals_vars.html +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/globals_w.html ...entation/html/Cordio_Stack_Cordio_Profiles/globals_w.html +0 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/graph_legend.html ...ation/html/Cordio_Stack_Cordio_Profiles/graph_legend.html +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/graph_legend.md5 ...tation/html/Cordio_Stack_Cordio_Profiles/graph_legend.md5 +0 -0
- 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 -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.js ...files/group___a_l_e_r_t-_r_e_l_a_t_e_d___s_e_r_v_i_c_e.js +0 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/group___d_m___synchronization.html ..._Stack_Cordio_Profiles/group___d_m___synchronization.html +0 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/index.html ...ocumentation/html/Cordio_Stack_Cordio_Profiles/index.html +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/jquery.js ...documentation/html/Cordio_Stack_Cordio_Profiles/jquery.js +0 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/mainpage_8md_source.html ...tml/Cordio_Stack_Cordio_Profiles/mainpage_8md_source.html +0 -0
- 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 -0
- 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 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/modules.html ...umentation/html/Cordio_Stack_Cordio_Profiles/modules.html +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/modules.js ...ocumentation/html/Cordio_Stack_Cordio_Profiles/modules.js +0 -0
- 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 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/navtree.js ...ocumentation/html/Cordio_Stack_Cordio_Profiles/navtree.js +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/navtreedata.js ...entation/html/Cordio_Stack_Cordio_Profiles/navtreedata.js +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/navtreeindex0.js ...tation/html/Cordio_Stack_Cordio_Profiles/navtreeindex0.js +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/navtreeindex1.js ...tation/html/Cordio_Stack_Cordio_Profiles/navtreeindex1.js +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/navtreeindex10.js ...ation/html/Cordio_Stack_Cordio_Profiles/navtreeindex10.js +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/navtreeindex11.js ...ation/html/Cordio_Stack_Cordio_Profiles/navtreeindex11.js +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/navtreeindex12.js ...ation/html/Cordio_Stack_Cordio_Profiles/navtreeindex12.js +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/navtreeindex13.js ...ation/html/Cordio_Stack_Cordio_Profiles/navtreeindex13.js +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/navtreeindex14.js ...ation/html/Cordio_Stack_Cordio_Profiles/navtreeindex14.js +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/navtreeindex15.js ...ation/html/Cordio_Stack_Cordio_Profiles/navtreeindex15.js +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/navtreeindex16.js ...ation/html/Cordio_Stack_Cordio_Profiles/navtreeindex16.js +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/navtreeindex17.js ...ation/html/Cordio_Stack_Cordio_Profiles/navtreeindex17.js +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/navtreeindex18.js ...ation/html/Cordio_Stack_Cordio_Profiles/navtreeindex18.js +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/navtreeindex19.js ...ation/html/Cordio_Stack_Cordio_Profiles/navtreeindex19.js +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/navtreeindex2.js ...tation/html/Cordio_Stack_Cordio_Profiles/navtreeindex2.js +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/navtreeindex3.js ...tation/html/Cordio_Stack_Cordio_Profiles/navtreeindex3.js +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/navtreeindex4.js ...tation/html/Cordio_Stack_Cordio_Profiles/navtreeindex4.js +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/navtreeindex5.js ...tation/html/Cordio_Stack_Cordio_Profiles/navtreeindex5.js +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/navtreeindex6.js ...tation/html/Cordio_Stack_Cordio_Profiles/navtreeindex6.js +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/navtreeindex7.js ...tation/html/Cordio_Stack_Cordio_Profiles/navtreeindex7.js +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/navtreeindex8.js ...tation/html/Cordio_Stack_Cordio_Profiles/navtreeindex8.js +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/navtreeindex9.js ...tation/html/Cordio_Stack_Cordio_Profiles/navtreeindex9.js +0 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/printComponentTabs.js ...n/html/Cordio_Stack_Cordio_Profiles/printComponentTabs.js +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/print_8h.html ...mentation/html/Cordio_Stack_Cordio_Profiles/print_8h.html +0 -0
- 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 -0
- 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 -0
- 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 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/resize.js ...documentation/html/Cordio_Stack_Cordio_Profiles/resize.js +0 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- 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 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/search/all_10.html ...tion/html/Cordio_Stack_Cordio_Profiles/search/all_10.html +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/search/all_10.js ...tation/html/Cordio_Stack_Cordio_Profiles/search/all_10.js +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/search/all_11.html ...tion/html/Cordio_Stack_Cordio_Profiles/search/all_11.html +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/search/all_11.js ...tation/html/Cordio_Stack_Cordio_Profiles/search/all_11.js +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/search/all_12.html ...tion/html/Cordio_Stack_Cordio_Profiles/search/all_12.html +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/search/all_12.js ...tation/html/Cordio_Stack_Cordio_Profiles/search/all_12.js +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/search/all_13.html ...tion/html/Cordio_Stack_Cordio_Profiles/search/all_13.html +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/search/all_13.js ...tation/html/Cordio_Stack_Cordio_Profiles/search/all_13.js +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/search/all_14.html ...tion/html/Cordio_Stack_Cordio_Profiles/search/all_14.html +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/search/all_14.js ...tation/html/Cordio_Stack_Cordio_Profiles/search/all_14.js +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/search/all_15.html ...tion/html/Cordio_Stack_Cordio_Profiles/search/all_15.html +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/search/all_15.js ...tation/html/Cordio_Stack_Cordio_Profiles/search/all_15.js +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/search/all_16.html ...tion/html/Cordio_Stack_Cordio_Profiles/search/all_16.html +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/search/all_16.js ...tation/html/Cordio_Stack_Cordio_Profiles/search/all_16.js +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/search/all_2.html ...ation/html/Cordio_Stack_Cordio_Profiles/search/all_2.html +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/search/all_2.js ...ntation/html/Cordio_Stack_Cordio_Profiles/search/all_2.js +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/search/all_3.html ...ation/html/Cordio_Stack_Cordio_Profiles/search/all_3.html +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/search/all_3.js ...ntation/html/Cordio_Stack_Cordio_Profiles/search/all_3.js +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/search/all_4.html ...ation/html/Cordio_Stack_Cordio_Profiles/search/all_4.html +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/search/all_4.js ...ntation/html/Cordio_Stack_Cordio_Profiles/search/all_4.js +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/search/all_5.html ...ation/html/Cordio_Stack_Cordio_Profiles/search/all_5.html +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/search/all_5.js ...ntation/html/Cordio_Stack_Cordio_Profiles/search/all_5.js +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/search/all_6.html ...ation/html/Cordio_Stack_Cordio_Profiles/search/all_6.html +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/search/all_6.js ...ntation/html/Cordio_Stack_Cordio_Profiles/search/all_6.js +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/search/all_7.html ...ation/html/Cordio_Stack_Cordio_Profiles/search/all_7.html +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/search/all_7.js ...ntation/html/Cordio_Stack_Cordio_Profiles/search/all_7.js +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/search/all_8.html ...ation/html/Cordio_Stack_Cordio_Profiles/search/all_8.html +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/search/all_8.js ...ntation/html/Cordio_Stack_Cordio_Profiles/search/all_8.js +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/search/all_9.html ...ation/html/Cordio_Stack_Cordio_Profiles/search/all_9.html +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/search/all_9.js ...ntation/html/Cordio_Stack_Cordio_Profiles/search/all_9.js +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/search/all_a.html ...ation/html/Cordio_Stack_Cordio_Profiles/search/all_a.html +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/search/all_a.js ...ntation/html/Cordio_Stack_Cordio_Profiles/search/all_a.js +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/search/all_b.html ...ation/html/Cordio_Stack_Cordio_Profiles/search/all_b.html +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/search/all_b.js ...ntation/html/Cordio_Stack_Cordio_Profiles/search/all_b.js +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/search/all_c.html ...ation/html/Cordio_Stack_Cordio_Profiles/search/all_c.html +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/search/all_c.js ...ntation/html/Cordio_Stack_Cordio_Profiles/search/all_c.js +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/search/all_d.html ...ation/html/Cordio_Stack_Cordio_Profiles/search/all_d.html +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/search/all_d.js ...ntation/html/Cordio_Stack_Cordio_Profiles/search/all_d.js +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/search/all_e.html ...ation/html/Cordio_Stack_Cordio_Profiles/search/all_e.html +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/search/all_e.js ...ntation/html/Cordio_Stack_Cordio_Profiles/search/all_e.js +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/search/all_f.html ...ation/html/Cordio_Stack_Cordio_Profiles/search/all_f.html +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/search/all_f.js ...ntation/html/Cordio_Stack_Cordio_Profiles/search/all_f.js +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/search/classes_0.html ...n/html/Cordio_Stack_Cordio_Profiles/search/classes_0.html +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/search/classes_0.js ...ion/html/Cordio_Stack_Cordio_Profiles/search/classes_0.js +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/search/classes_1.html ...n/html/Cordio_Stack_Cordio_Profiles/search/classes_1.html +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/search/classes_1.js ...ion/html/Cordio_Stack_Cordio_Profiles/search/classes_1.js +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/search/classes_2.html ...n/html/Cordio_Stack_Cordio_Profiles/search/classes_2.html +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/search/classes_2.js ...ion/html/Cordio_Stack_Cordio_Profiles/search/classes_2.js +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/search/classes_3.html ...n/html/Cordio_Stack_Cordio_Profiles/search/classes_3.html +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/search/classes_3.js ...ion/html/Cordio_Stack_Cordio_Profiles/search/classes_3.js +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/search/classes_4.html ...n/html/Cordio_Stack_Cordio_Profiles/search/classes_4.html +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/search/classes_4.js ...ion/html/Cordio_Stack_Cordio_Profiles/search/classes_4.js +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/search/classes_5.html ...n/html/Cordio_Stack_Cordio_Profiles/search/classes_5.html +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/search/classes_5.js ...ion/html/Cordio_Stack_Cordio_Profiles/search/classes_5.js +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/search/classes_6.html ...n/html/Cordio_Stack_Cordio_Profiles/search/classes_6.html +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/search/classes_6.js ...ion/html/Cordio_Stack_Cordio_Profiles/search/classes_6.js +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/search/classes_7.html ...n/html/Cordio_Stack_Cordio_Profiles/search/classes_7.html +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/search/classes_7.js ...ion/html/Cordio_Stack_Cordio_Profiles/search/classes_7.js +0 -0
- lib/sdk/Libraries/BTLE/documentation/html/Cordio_Stack_Cordio_Profiles/search/classes_8.html ...n/html/Cordio_Stack_Cordio_Profiles/search/classes_8.html +0 -0
- No files found.
Too many changes to show.
To preserve performance only 1000 of 1000+ files are displayed.