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:
daishengdong
2020-05-07 11:11:04 +08:00
parent c8e39739d3
commit 3e631cd96a
594 changed files with 47287 additions and 44165 deletions

View 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

View 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