From 5f1ad581b42a31907c59fd24ca26bbd94579b2fd Mon Sep 17 00:00:00 2001 From: "ethan.du" Date: Wed, 19 Feb 2020 16:32:02 +0800 Subject: [PATCH] add func declare --- src/sdk-impl/uiot_import.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/sdk-impl/uiot_import.h b/src/sdk-impl/uiot_import.h index 9f5b0bf..01e0754 100644 --- a/src/sdk-impl/uiot_import.h +++ b/src/sdk-impl/uiot_import.h @@ -316,6 +316,8 @@ int32_t HAL_TCP_Write(_IN_ uintptr_t fd, _IN_ unsigned char *buf, _IN_ size_t le */ int32_t HAL_TCP_Read(_IN_ uintptr_t fd, _OU_ unsigned char *buf, _IN_ size_t len, _IN_ uint32_t timeout_ms); #ifdef SUPPORT_AT_CMD +void HAL_AT_Init(); + int HAL_AT_Read(_IN_ utils_network_pt pNetwork, _OU_ unsigned char *buffer, _IN_ size_t len); int HAL_AT_Write(_IN_ unsigned char *buffer, _IN_ size_t len);