From a6f1215923f8a34548d08e2efaa46277134baa73 Mon Sep 17 00:00:00 2001 From: chuyunfei <755708445@qq.com> Date: Mon, 21 Aug 2023 22:55:07 -0700 Subject: [PATCH] add func header --- .../Applications/app_test/test_lora_p2p/test_lora_p2p.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/APP_Framework/Applications/app_test/test_lora_p2p/test_lora_p2p.h b/APP_Framework/Applications/app_test/test_lora_p2p/test_lora_p2p.h index 99b5ab13c..08d9a1a9f 100644 --- a/APP_Framework/Applications/app_test/test_lora_p2p/test_lora_p2p.h +++ b/APP_Framework/Applications/app_test/test_lora_p2p/test_lora_p2p.h @@ -81,6 +81,10 @@ struct LoraHeaderFormat uint8_t crc_hi; //2 }; +static int LoraClientJoinNet(); +static int LoraClientSendData(void* data, uint16_t raw_data_length); +static int LoraClientQuitNet(); + /**************************gateway_handlers*********************************/ static int ClientJoinNetHandler(struct Adapter* adapter,struct LoraHeaderFormat* header); static int ClientQuitNetHandler(struct Adapter* adapter,struct LoraHeaderFormat* header);