update qcloud sdk
1. iot-hub sdk update to 3.2.0 2. iot-explorer update to 3.1.1
This commit is contained in:
17
components/connectivity/qcloud-iot-hub-sdk/3rdparty/tools/cmake_scripts/config.h.in
vendored
Normal file
17
components/connectivity/qcloud-iot-hub-sdk/3rdparty/tools/cmake_scripts/config.h.in
vendored
Normal file
@@ -0,0 +1,17 @@
|
||||
#cmakedefine AUTH_MODE_CERT
|
||||
#cmakedefine AUTH_MODE_KEY
|
||||
#cmakedefine AUTH_WITH_NOTLS
|
||||
#cmakedefine GATEWAY_ENABLED
|
||||
#cmakedefine COAP_COMM_ENABLED
|
||||
#cmakedefine OTA_MQTT_CHANNEL
|
||||
#cmakedefine SYSTEM_COMM
|
||||
#cmakedefine DEV_DYN_REG_ENABLED
|
||||
#cmakedefine LOG_UPLOAD
|
||||
#cmakedefine IOT_DEBUG
|
||||
#cmakedefine DEBUG_DEV_INFO_USED
|
||||
#cmakedefine AT_TCP_ENABLED
|
||||
#cmakedefine AT_UART_RECV_IRQ
|
||||
#cmakedefine AT_OS_USED
|
||||
#cmakedefine AT_DEBUG
|
||||
#cmakedefine OTA_USE_HTTPS
|
||||
#cmakedefine MULTITHREAD_ENABLED
|
12
components/connectivity/qcloud-iot-hub-sdk/3rdparty/tools/cmake_scripts/convert.sh
vendored
Normal file
12
components/connectivity/qcloud-iot-hub-sdk/3rdparty/tools/cmake_scripts/convert.sh
vendored
Normal file
@@ -0,0 +1,12 @@
|
||||
#!/bin/bash
|
||||
|
||||
if [ $1 == "linux" ]; then
|
||||
find $2 -type f -name "*.h" -print -o -name "*.c" -print | xargs -i sed -i '1 s/^\xef\xbb\xbf//' {}
|
||||
echo "Convert source files to Unix format!!!"
|
||||
elif [ $1 == "windows" ]; then
|
||||
find $2 -type f -name "*.h" -print -o -name "*.c" -print | xargs -i sed -i '1 s/^/\xef\xbb\xbf&/' {}
|
||||
echo "Convert source files to Windows format!!!"
|
||||
else
|
||||
echo "Invaild argument!"
|
||||
echo "Please choose windows or linux !!!"
|
||||
fi
|
Reference in New Issue
Block a user