├── .clang-format ├── .gitignore ├── LICENSE ├── config └── ble_qiot_config.h ├── docs ├── FAQ.md ├── LLSync SDK 接入指引.md ├── LLSync SDK双路通信功能接入指引.md ├── LLSync SDK标准蓝牙功能接入指引.md ├── LLSync SDK辅助配网功能接入指引.md ├── LLSync蓝牙设备接入协议.docx ├── LLSync蓝牙设备接入协议.pdf └── 腾讯云IoT BLE设备技术认证测试标准及报告v2.1.docx ├── inc ├── ble_qiot_export.h └── ble_qiot_import.h ├── lib └── qcloud_iot_c_sdk │ ├── platform │ ├── HAL_BTCombo_config.c │ └── HAL_Wifi_api.c │ └── sdk_src │ ├── qcloud_wifi_config_error_handle.c │ └── qcloud_wifi_config_log_handle.c ├── readme.md ├── scripts └── interpret_json_dt │ ├── readme.md │ └── src │ └── interpret_dt_ble.py └── src ├── core ├── ble_qiot_llsync_data.c ├── ble_qiot_llsync_device.c ├── ble_qiot_llsync_event.c ├── ble_qiot_llsync_ota.c ├── ble_qiot_llsync_utils.c └── ble_qiot_service.c ├── internal_inc ├── ble_qiot_aes.h ├── ble_qiot_common.h ├── ble_qiot_crc.h ├── ble_qiot_hmac.h ├── ble_qiot_llsync_data.h ├── ble_qiot_llsync_device.h ├── ble_qiot_llsync_event.h ├── ble_qiot_llsync_ota.h ├── ble_qiot_log.h ├── ble_qiot_md5.h ├── ble_qiot_param_check.h ├── ble_qiot_service.h ├── ble_qiot_sha1.h └── ble_qiot_utils_base64.h └── utils ├── ble_qiot_utils_aes.c ├── ble_qiot_utils_base64.c ├── ble_qiot_utils_crc.c ├── ble_qiot_utils_hmac.c ├── ble_qiot_utils_log.c ├── ble_qiot_utils_md5.c └── ble_qiot_utils_sha1.c /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentCloud/tencentcloud-iot-explorer-ble-sdk-embedded/HEAD/.clang-format -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /.idea/ 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentCloud/tencentcloud-iot-explorer-ble-sdk-embedded/HEAD/LICENSE -------------------------------------------------------------------------------- /config/ble_qiot_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentCloud/tencentcloud-iot-explorer-ble-sdk-embedded/HEAD/config/ble_qiot_config.h -------------------------------------------------------------------------------- /docs/FAQ.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentCloud/tencentcloud-iot-explorer-ble-sdk-embedded/HEAD/docs/FAQ.md -------------------------------------------------------------------------------- /docs/LLSync SDK 接入指引.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentCloud/tencentcloud-iot-explorer-ble-sdk-embedded/HEAD/docs/LLSync SDK 接入指引.md -------------------------------------------------------------------------------- /docs/LLSync SDK双路通信功能接入指引.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentCloud/tencentcloud-iot-explorer-ble-sdk-embedded/HEAD/docs/LLSync SDK双路通信功能接入指引.md -------------------------------------------------------------------------------- /docs/LLSync SDK标准蓝牙功能接入指引.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentCloud/tencentcloud-iot-explorer-ble-sdk-embedded/HEAD/docs/LLSync SDK标准蓝牙功能接入指引.md -------------------------------------------------------------------------------- /docs/LLSync SDK辅助配网功能接入指引.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentCloud/tencentcloud-iot-explorer-ble-sdk-embedded/HEAD/docs/LLSync SDK辅助配网功能接入指引.md -------------------------------------------------------------------------------- /docs/LLSync蓝牙设备接入协议.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentCloud/tencentcloud-iot-explorer-ble-sdk-embedded/HEAD/docs/LLSync蓝牙设备接入协议.docx -------------------------------------------------------------------------------- /docs/LLSync蓝牙设备接入协议.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentCloud/tencentcloud-iot-explorer-ble-sdk-embedded/HEAD/docs/LLSync蓝牙设备接入协议.pdf -------------------------------------------------------------------------------- /docs/腾讯云IoT BLE设备技术认证测试标准及报告v2.1.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentCloud/tencentcloud-iot-explorer-ble-sdk-embedded/HEAD/docs/腾讯云IoT BLE设备技术认证测试标准及报告v2.1.docx -------------------------------------------------------------------------------- /inc/ble_qiot_export.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentCloud/tencentcloud-iot-explorer-ble-sdk-embedded/HEAD/inc/ble_qiot_export.h -------------------------------------------------------------------------------- /inc/ble_qiot_import.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentCloud/tencentcloud-iot-explorer-ble-sdk-embedded/HEAD/inc/ble_qiot_import.h -------------------------------------------------------------------------------- /lib/qcloud_iot_c_sdk/platform/HAL_BTCombo_config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentCloud/tencentcloud-iot-explorer-ble-sdk-embedded/HEAD/lib/qcloud_iot_c_sdk/platform/HAL_BTCombo_config.c -------------------------------------------------------------------------------- /lib/qcloud_iot_c_sdk/platform/HAL_Wifi_api.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentCloud/tencentcloud-iot-explorer-ble-sdk-embedded/HEAD/lib/qcloud_iot_c_sdk/platform/HAL_Wifi_api.c -------------------------------------------------------------------------------- /lib/qcloud_iot_c_sdk/sdk_src/qcloud_wifi_config_error_handle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentCloud/tencentcloud-iot-explorer-ble-sdk-embedded/HEAD/lib/qcloud_iot_c_sdk/sdk_src/qcloud_wifi_config_error_handle.c -------------------------------------------------------------------------------- /lib/qcloud_iot_c_sdk/sdk_src/qcloud_wifi_config_log_handle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentCloud/tencentcloud-iot-explorer-ble-sdk-embedded/HEAD/lib/qcloud_iot_c_sdk/sdk_src/qcloud_wifi_config_log_handle.c -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentCloud/tencentcloud-iot-explorer-ble-sdk-embedded/HEAD/readme.md -------------------------------------------------------------------------------- /scripts/interpret_json_dt/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentCloud/tencentcloud-iot-explorer-ble-sdk-embedded/HEAD/scripts/interpret_json_dt/readme.md -------------------------------------------------------------------------------- /scripts/interpret_json_dt/src/interpret_dt_ble.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentCloud/tencentcloud-iot-explorer-ble-sdk-embedded/HEAD/scripts/interpret_json_dt/src/interpret_dt_ble.py -------------------------------------------------------------------------------- /src/core/ble_qiot_llsync_data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentCloud/tencentcloud-iot-explorer-ble-sdk-embedded/HEAD/src/core/ble_qiot_llsync_data.c -------------------------------------------------------------------------------- /src/core/ble_qiot_llsync_device.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentCloud/tencentcloud-iot-explorer-ble-sdk-embedded/HEAD/src/core/ble_qiot_llsync_device.c -------------------------------------------------------------------------------- /src/core/ble_qiot_llsync_event.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentCloud/tencentcloud-iot-explorer-ble-sdk-embedded/HEAD/src/core/ble_qiot_llsync_event.c -------------------------------------------------------------------------------- /src/core/ble_qiot_llsync_ota.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentCloud/tencentcloud-iot-explorer-ble-sdk-embedded/HEAD/src/core/ble_qiot_llsync_ota.c -------------------------------------------------------------------------------- /src/core/ble_qiot_llsync_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentCloud/tencentcloud-iot-explorer-ble-sdk-embedded/HEAD/src/core/ble_qiot_llsync_utils.c -------------------------------------------------------------------------------- /src/core/ble_qiot_service.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentCloud/tencentcloud-iot-explorer-ble-sdk-embedded/HEAD/src/core/ble_qiot_service.c -------------------------------------------------------------------------------- /src/internal_inc/ble_qiot_aes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentCloud/tencentcloud-iot-explorer-ble-sdk-embedded/HEAD/src/internal_inc/ble_qiot_aes.h -------------------------------------------------------------------------------- /src/internal_inc/ble_qiot_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentCloud/tencentcloud-iot-explorer-ble-sdk-embedded/HEAD/src/internal_inc/ble_qiot_common.h -------------------------------------------------------------------------------- /src/internal_inc/ble_qiot_crc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentCloud/tencentcloud-iot-explorer-ble-sdk-embedded/HEAD/src/internal_inc/ble_qiot_crc.h -------------------------------------------------------------------------------- /src/internal_inc/ble_qiot_hmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentCloud/tencentcloud-iot-explorer-ble-sdk-embedded/HEAD/src/internal_inc/ble_qiot_hmac.h -------------------------------------------------------------------------------- /src/internal_inc/ble_qiot_llsync_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentCloud/tencentcloud-iot-explorer-ble-sdk-embedded/HEAD/src/internal_inc/ble_qiot_llsync_data.h -------------------------------------------------------------------------------- /src/internal_inc/ble_qiot_llsync_device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentCloud/tencentcloud-iot-explorer-ble-sdk-embedded/HEAD/src/internal_inc/ble_qiot_llsync_device.h -------------------------------------------------------------------------------- /src/internal_inc/ble_qiot_llsync_event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentCloud/tencentcloud-iot-explorer-ble-sdk-embedded/HEAD/src/internal_inc/ble_qiot_llsync_event.h -------------------------------------------------------------------------------- /src/internal_inc/ble_qiot_llsync_ota.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentCloud/tencentcloud-iot-explorer-ble-sdk-embedded/HEAD/src/internal_inc/ble_qiot_llsync_ota.h -------------------------------------------------------------------------------- /src/internal_inc/ble_qiot_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentCloud/tencentcloud-iot-explorer-ble-sdk-embedded/HEAD/src/internal_inc/ble_qiot_log.h -------------------------------------------------------------------------------- /src/internal_inc/ble_qiot_md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentCloud/tencentcloud-iot-explorer-ble-sdk-embedded/HEAD/src/internal_inc/ble_qiot_md5.h -------------------------------------------------------------------------------- /src/internal_inc/ble_qiot_param_check.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentCloud/tencentcloud-iot-explorer-ble-sdk-embedded/HEAD/src/internal_inc/ble_qiot_param_check.h -------------------------------------------------------------------------------- /src/internal_inc/ble_qiot_service.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentCloud/tencentcloud-iot-explorer-ble-sdk-embedded/HEAD/src/internal_inc/ble_qiot_service.h -------------------------------------------------------------------------------- /src/internal_inc/ble_qiot_sha1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentCloud/tencentcloud-iot-explorer-ble-sdk-embedded/HEAD/src/internal_inc/ble_qiot_sha1.h -------------------------------------------------------------------------------- /src/internal_inc/ble_qiot_utils_base64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentCloud/tencentcloud-iot-explorer-ble-sdk-embedded/HEAD/src/internal_inc/ble_qiot_utils_base64.h -------------------------------------------------------------------------------- /src/utils/ble_qiot_utils_aes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentCloud/tencentcloud-iot-explorer-ble-sdk-embedded/HEAD/src/utils/ble_qiot_utils_aes.c -------------------------------------------------------------------------------- /src/utils/ble_qiot_utils_base64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentCloud/tencentcloud-iot-explorer-ble-sdk-embedded/HEAD/src/utils/ble_qiot_utils_base64.c -------------------------------------------------------------------------------- /src/utils/ble_qiot_utils_crc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentCloud/tencentcloud-iot-explorer-ble-sdk-embedded/HEAD/src/utils/ble_qiot_utils_crc.c -------------------------------------------------------------------------------- /src/utils/ble_qiot_utils_hmac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentCloud/tencentcloud-iot-explorer-ble-sdk-embedded/HEAD/src/utils/ble_qiot_utils_hmac.c -------------------------------------------------------------------------------- /src/utils/ble_qiot_utils_log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentCloud/tencentcloud-iot-explorer-ble-sdk-embedded/HEAD/src/utils/ble_qiot_utils_log.c -------------------------------------------------------------------------------- /src/utils/ble_qiot_utils_md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentCloud/tencentcloud-iot-explorer-ble-sdk-embedded/HEAD/src/utils/ble_qiot_utils_md5.c -------------------------------------------------------------------------------- /src/utils/ble_qiot_utils_sha1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentCloud/tencentcloud-iot-explorer-ble-sdk-embedded/HEAD/src/utils/ble_qiot_utils_sha1.c --------------------------------------------------------------------------------