From 60dbc5529d582d21bba10f6611f1effa421c11a0 Mon Sep 17 00:00:00 2001 From: windyyuan <2416560314@qq.com> Date: Wed, 13 Sep 2023 21:28:22 +0800 Subject: [PATCH] =?UTF-8?q?=E5=88=9D=E6=AD=A5=E5=AE=8C=E6=88=90=E4=BA=86?= =?UTF-8?q?=E5=8A=9F=E8=83=BD=E6=B5=8B=E8=AF=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../app_test/test_lora_p2p/readme.md | 0 .../app_test/test_lora_p2p/test_lora_p2p.c | 24 +++++++++++++++++++ APP_Framework/Applications/main.c | 2 +- 3 files changed, 25 insertions(+), 1 deletion(-) create mode 100644 APP_Framework/Applications/app_test/test_lora_p2p/readme.md create mode 100644 APP_Framework/Applications/app_test/test_lora_p2p/test_lora_p2p.c diff --git a/APP_Framework/Applications/app_test/test_lora_p2p/readme.md b/APP_Framework/Applications/app_test/test_lora_p2p/readme.md new file mode 100644 index 000000000..e69de29bb diff --git a/APP_Framework/Applications/app_test/test_lora_p2p/test_lora_p2p.c b/APP_Framework/Applications/app_test/test_lora_p2p/test_lora_p2p.c new file mode 100644 index 000000000..cc10fa46c --- /dev/null +++ b/APP_Framework/Applications/app_test/test_lora_p2p/test_lora_p2p.c @@ -0,0 +1,24 @@ +/* +* Copyright (c) 2020 AIIT XUOS Lab +* XiUOS is licensed under Mulan PSL v2. +* You can use this software according to the terms and conditions of the Mulan PSL v2. +* You may obtain a copy of Mulan PSL v2 at: +* http://license.coscl.org.cn/MulanPSL2 +* THIS SOFTWARE IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OF ANY KIND, +* EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO NON-INFRINGEMENT, +* MERCHANTABILITY OR FIT FOR A PARTICULAR PURPOSE. +* See the Mulan PSL v2 for more details. +*/ + +/** +* @file: test_lcd.c +* @brief: LoRa connect A of B +* @version: 0.1 +* @author: Diona_ +* @date: 2023/09/13 +*/ +//#define PRIV_SHELL_CMD_FUNCTION(_func, _desc, _attr) SHELL_EXPORT_CMD(_attr, _func, _func, _desc) +//#include +//#include +//#include + diff --git a/APP_Framework/Applications/main.c b/APP_Framework/Applications/main.c index b1f142f54..ae578a35c 100644 --- a/APP_Framework/Applications/main.c +++ b/APP_Framework/Applications/main.c @@ -19,7 +19,7 @@ extern int FrameworkInit(); extern void ApplicationOtaTaskInit(void); int main(void) { - printf("Hello, world! \nTEST 2023 09 13\n431\n"); + printf("Hello, world!"); FrameworkInit(); #ifdef APPLICATION_OTA ApplicationOtaTaskInit();