Merge pull request #134 from DavidLin1577/patch-5

Fixed  param[in] infomation in lora_module_wrapper.h
This commit is contained in:
Supowang1989
2020-04-13 10:18:14 +08:00
committed by GitHub

View File

@@ -16,7 +16,7 @@
*---------------------------------------------------------------------------*/ *---------------------------------------------------------------------------*/
#ifndef _LORA_MODULE_WRAPPER_H_ #ifndef _LORA_MODULE_WRAPPER_H_
#define _LORA_MODULE_WRAPPER_H_ #define _LORA_MODULE_WRAPPER_H_
#include <stdint.h> #include <stdint.h>
#include <stdio.h> #include <stdio.h>
@@ -106,7 +106,7 @@ int tos_lora_module_send_unconfirmed(const void *buf, size_t len);
* *
* @attention None * @attention None
* *
* @param[in] mcps_indication receive callback method * @param[in] recv_callback receive callback method
* *
* @return errcode * @return errcode
*/ */
@@ -121,5 +121,4 @@ int tos_lora_module_recvcb_register(lora_recv_callback_t recv_callback);
*/ */
int tos_lora_module_close(void); int tos_lora_module_close(void);
#endif #endif /*_LORA_MODULE_WRAPPER_H_*/