21 lines
322 B
C
21 lines
322 B
C
#ifndef __LORA_DEMO_H__
|
|
#define __LORA_DEMO_H__
|
|
|
|
#include <stdbool.h>
|
|
#include "mcu_init.h"
|
|
#include "tos_at.h"
|
|
#include "string.h"
|
|
#include "cmsis_os.h"
|
|
#include "lora_module_wrapper.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
void application_entry(void *arg);
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* __LORA_DEMO_H__ */
|