From e9e9080ae090bbee1681a27bbadca37c74c6d36d Mon Sep 17 00:00:00 2001 From: Liu_Weichao Date: Fri, 10 Dec 2021 10:39:37 +0800 Subject: [PATCH] delete useless DIR connection_app/ and app_test/ --- APP_Framework/Applications/app_test/Kconfig | 8 - APP_Framework/Applications/app_test/Makefile | 8 - .../Applications/app_test/test_adhoc_lora.c | 20 -- .../Applications/connection_app/Makefile | 2 +- .../connection_app/adhoc_lora_demo/Makefile | 3 - .../connection_app/adhoc_lora_demo/client.c | 108 --------- .../connection_app/adhoc_lora_demo/gateway.c | 63 ----- .../connection_app/bluetooth_demo/Makefile | 3 - .../bluetooth_demo/bluetooth_receive_demo.c | 88 ------- .../bluetooth_demo/bluetooth_send_demo.c | 65 ----- .../connection_app/ethernet_demo/Makefile | 3 - .../ethernet_demo/ethernet_demo.c | 197 ---------------- .../connection_app/nbiot_demo/Makefile | 3 - .../connection_app/nbiot_demo/nbiot_demo.c | 56 ----- .../connection_app/wifi_demo/Makefile | 3 - .../connection_app/wifi_demo/wifi_demo.c | 223 ------------------ .../connection_app/zigbee_demo/Makefile | 3 - .../zigbee_demo/zigbee_receive_demo.c | 88 ------- .../zigbee_demo/zigbee_send_demo.c | 65 ----- 19 files changed, 1 insertion(+), 1008 deletions(-) delete mode 100644 APP_Framework/Applications/app_test/test_adhoc_lora.c delete mode 100644 APP_Framework/Applications/connection_app/adhoc_lora_demo/Makefile delete mode 100644 APP_Framework/Applications/connection_app/adhoc_lora_demo/client.c delete mode 100644 APP_Framework/Applications/connection_app/adhoc_lora_demo/gateway.c delete mode 100644 APP_Framework/Applications/connection_app/bluetooth_demo/Makefile delete mode 100644 APP_Framework/Applications/connection_app/bluetooth_demo/bluetooth_receive_demo.c delete mode 100644 APP_Framework/Applications/connection_app/bluetooth_demo/bluetooth_send_demo.c delete mode 100644 APP_Framework/Applications/connection_app/ethernet_demo/Makefile delete mode 100644 APP_Framework/Applications/connection_app/ethernet_demo/ethernet_demo.c delete mode 100644 APP_Framework/Applications/connection_app/nbiot_demo/Makefile delete mode 100644 APP_Framework/Applications/connection_app/nbiot_demo/nbiot_demo.c delete mode 100644 APP_Framework/Applications/connection_app/wifi_demo/Makefile delete mode 100644 APP_Framework/Applications/connection_app/wifi_demo/wifi_demo.c delete mode 100644 APP_Framework/Applications/connection_app/zigbee_demo/Makefile delete mode 100644 APP_Framework/Applications/connection_app/zigbee_demo/zigbee_receive_demo.c delete mode 100644 APP_Framework/Applications/connection_app/zigbee_demo/zigbee_send_demo.c diff --git a/APP_Framework/Applications/app_test/Kconfig b/APP_Framework/Applications/app_test/Kconfig index 66837a94..4fc3bfbf 100644 --- a/APP_Framework/Applications/app_test/Kconfig +++ b/APP_Framework/Applications/app_test/Kconfig @@ -4,14 +4,6 @@ menu "test app" default n if USER_TEST - config USER_TEST_LORA_ADHOC - bool "Config test lora adhoc" - default n - - config USER_TEST_SPI_LORA - bool "Config test spi lora" - default n - config USER_TEST_SPI_FLASH bool "Config test spi flash" default n diff --git a/APP_Framework/Applications/app_test/Makefile b/APP_Framework/Applications/app_test/Makefile index f5cdb66e..96322c1c 100644 --- a/APP_Framework/Applications/app_test/Makefile +++ b/APP_Framework/Applications/app_test/Makefile @@ -1,13 +1,5 @@ SRC_FILES := -ifeq ($(CONFIG_USER_TEST_LORA_ADHOC),y) - SRC_FILES += test_adhoc_lora.c -endif - -ifeq ($(CONFIG_USER_TEST_SPI_LORA),y) - SRC_FILES += test_spi_lora.c -endif - ifeq ($(CONFIG_USER_TEST_SPI_FLASH),y) SRC_FILES += test_spi_flash.c endif diff --git a/APP_Framework/Applications/app_test/test_adhoc_lora.c b/APP_Framework/Applications/app_test/test_adhoc_lora.c deleted file mode 100644 index 7cf37967..00000000 --- a/APP_Framework/Applications/app_test/test_adhoc_lora.c +++ /dev/null @@ -1,20 +0,0 @@ -#include - -extern void net_lora_client(int argc, char *argv[]); -extern void net_lora_gateway(int argc, char *argv[]); - -void demo_lora_adhoc() -{ - #ifdef CONNECTION_COMMUNICATION_SET_AS_LORA_CLIENT - char pgk_count[32]; - char* param[3]; - param[0] = "xxx"; - param[1] = CONNECTION_COMMUNICATION_LORA_CLIENT_NAME; - itoa(CONNECTION_COMMUNICATION_LORA_CLIENT_PKG_COUNT, pgk_count, 10); - param[2] = pgk_count; - net_lora_client(2, param); - #endif - #ifdef CONNECTION_COMMUNICATION_SET_AS_LORA_GATEWAY - net_lora_gateway(0, 0); - #endif -} diff --git a/APP_Framework/Applications/connection_app/Makefile b/APP_Framework/Applications/connection_app/Makefile index 6001bf52..5948fa6f 100755 --- a/APP_Framework/Applications/connection_app/Makefile +++ b/APP_Framework/Applications/connection_app/Makefile @@ -1,3 +1,3 @@ -SRC_DIR :=wifi_demo +SRC_DIR := include $(KERNEL_ROOT)/compiler.mk \ No newline at end of file diff --git a/APP_Framework/Applications/connection_app/adhoc_lora_demo/Makefile b/APP_Framework/Applications/connection_app/adhoc_lora_demo/Makefile deleted file mode 100644 index f3597d94..00000000 --- a/APP_Framework/Applications/connection_app/adhoc_lora_demo/Makefile +++ /dev/null @@ -1,3 +0,0 @@ -SRC_FILES := client.c gateway.c - -include $(KERNEL_ROOT)/compiler.mk diff --git a/APP_Framework/Applications/connection_app/adhoc_lora_demo/client.c b/APP_Framework/Applications/connection_app/adhoc_lora_demo/client.c deleted file mode 100644 index 1f255a18..00000000 --- a/APP_Framework/Applications/connection_app/adhoc_lora_demo/client.c +++ /dev/null @@ -1,108 +0,0 @@ -#include -#include -#include -#include -#include -#include - -char client_name[DEVNAME_LEN_MAX] = "lora_dev_123"; - -void success_cb(void *param) -{ - printf("success_cb, param = %s\n", param); -} - -void invert_param(void *param) -{ - printf("success_cb02 invoke, invert bool param.\n"); - bool *bparam = (bool *)param; - if (*bparam) - { - *bparam = false; - } - else - { - *bparam = true; - } -} - -void net_lora_client(int argc, char *argv[]) -{ - int pkg_count = 10; - if (argc >= 1) - { - memset(client_name, 0, DEVNAME_LEN_MAX); - strncpy(client_name, argv[1], strlen(argv[1])); - printf("lora client set clientName(%s).\n", client_name); - } - - if (argc >= 2) - { - pkg_count = atoi(argv[2]); - printf("lora client set pkg_count(%d).\n", pkg_count); - } - - // 1.Create an adapter for a specific agreement (LORA) - static struct AdapterLora lora_adapter; - memset(&lora_adapter, 0, sizeof(lora_adapter)); - struct AdapterDone lora_example_done = { - .NetAiitOpen = LoraAdapterOpen, - .NetAiitClose = LoraAdapterCose, - .NetAiitSend = LoraAdapterSendc2g, - .NetAiitReceive = NULL, - .NetAiitJoin = LoraAdapterJoin, - .NetAiitIoctl = NULL, - }; - lora_adapter.parent.done = lora_example_done; // Bind adapter operation - lora_adapter.name = client_name; // Set adapter name - lora_adapter.spi_lora_fd = -1; // Set adapter information - lora_adapter.deve_ui = "xxx"; - lora_adapter.app_key = "yyy"; - - // 2.Register the adapter in the list - LoraAdapterInit(); - LoraAdapterRegister((adapter_t)&lora_adapter); - - // 3.Find from the list of registered adapters - adapter_t padapter = LoraAdapterFind(client_name); - if (NONE == padapter) - { - printf("adapter find failed!\n"); - return; - } - - // 4.Open adapter - if (0 != padapter->done.NetAiitOpen(padapter)) - { - printf("adapter open failed!\n"); - return; - } - - // 5.Join the specified network segment as client - printf("NetAiitJoin start. \n"); - padapter->done.NetAiitJoin(padapter, ROLE_TYPE_SLAVE, CONNECTION_COMMUNICATION_LORA_NET_ID); - printf("NetAiitJoin end. \n"); - - // 6.Point to point sending data to gateway - int i = 0; - while (i < pkg_count) - { - char data[120] = {0}; - sprintf(data, "***** I am %s, data_num = %d ******" ,client_name, i); - - bool v = false; - padapter->done.NetAiitSend(padapter, data, strlen(data) + 1, true, 10000, 0, invert_param, &v, NULL); - while (!v) // Asynchronous analog synchronization - { - UserTaskDelay(100); - } - printf("send success(main thread)... %s\n" ,data); - - i++; - UserTaskDelay(800); // Contract interval - } - printf("all pkg send success(main thread), quit.\n"); - - padapter->done.NetAiitClose(padapter); - printf("client quit.\n"); -} diff --git a/APP_Framework/Applications/connection_app/adhoc_lora_demo/gateway.c b/APP_Framework/Applications/connection_app/adhoc_lora_demo/gateway.c deleted file mode 100644 index 678aec3b..00000000 --- a/APP_Framework/Applications/connection_app/adhoc_lora_demo/gateway.c +++ /dev/null @@ -1,63 +0,0 @@ -#include -#include -#include -#include -#include - -extern DoubleLinklistType online_user_head; - -void net_lora_gateway(int argc, char *argv[]) -{ - // 1.New specific agreement (LORA) adapter - static struct AdapterLora lora_adapter; - memset(&lora_adapter, 0, sizeof(lora_adapter)); - struct AdapterDone lora_example_done = { - .NetAiitOpen = LoraAdapterOpen, - .NetAiitClose = NULL, - .NetAiitSend = NULL, - .NetAiitReceive = LoraAdapterReceive, - .NetAiitJoin = LoraAdapterJoin, - .NetAiitIoctl = NULL, - }; - lora_adapter.parent.done = lora_example_done; // Bind adapter operation - lora_adapter.name = "lora_dev_456"; // Set adapter name - lora_adapter.spi_lora_fd = -1; // Set adapter information - lora_adapter.deve_ui = "xxx"; - lora_adapter.app_key = "yyy"; - - // 2.Register the adapter in the list - LoraAdapterInit(); - LoraAdapterRegister((adapter_t)&lora_adapter); - - // 3.Find from the list of registered adapters - adapter_t padapter = LoraAdapterFind("lora_dev_456"); - if (NONE == padapter) - { - printf("adapter find failed!\n"); - return; - } - - // 4.Open adapter - if (0 != padapter->done.NetAiitOpen(padapter)) - { - printf("adapter open failed!\n"); - return; - } - - // 5.Join the specified network segment as gateway - padapter->done.NetAiitJoin(padapter, ROLE_TYPE_MASTER, CONNECTION_COMMUNICATION_LORA_NET_ID); -} - - - -static void net_lora_connectedlist(int argc, char *argv[]) -{ - DoubleLinklistType* pNode; - printf("******** connected users *********\n"); - DOUBLE_LINKLIST_FOR_EACH(pNode, &online_user_head) - { - OnlineUser* pUser =CONTAINER_OF(pNode, OnlineUser, link); - printf("%s\n", pUser->user_name); - } - printf("*********************************\n"); -} \ No newline at end of file diff --git a/APP_Framework/Applications/connection_app/bluetooth_demo/Makefile b/APP_Framework/Applications/connection_app/bluetooth_demo/Makefile deleted file mode 100644 index efaa7edc..00000000 --- a/APP_Framework/Applications/connection_app/bluetooth_demo/Makefile +++ /dev/null @@ -1,3 +0,0 @@ -SRC_FILES := bluetooth_receive_demo.c bluetooth_send_demo.c -# zigbee_send_demo.c zigbee_receive_demo.c -include $(KERNEL_ROOT)/compiler.mk \ No newline at end of file diff --git a/APP_Framework/Applications/connection_app/bluetooth_demo/bluetooth_receive_demo.c b/APP_Framework/Applications/connection_app/bluetooth_demo/bluetooth_receive_demo.c deleted file mode 100644 index 246a5436..00000000 --- a/APP_Framework/Applications/connection_app/bluetooth_demo/bluetooth_receive_demo.c +++ /dev/null @@ -1,88 +0,0 @@ -/* -* 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: bluetooth_receive_demo.c -* @brief: using bluetooth to receive message -* @version: 1.0 -* @author: AIIT XUOS Lab -* @date: 2021/4/30 -* -*/ -#include -#include -#include -#include -#include -#include -static int re_sem; - -static int buff_sem; - - -/*Critical zone protection function for*/ -void BluetoothWait(char *rev_buffer) -{ - while(1){ - if (strlen(rev_buffer)>1){ - UserSemaphoreAbandon(re_sem); - break; - } - } - -} - - -/* receive message from another bluetooth device*/ -void BluetoothReceiveDemo(int argc, char *argv[]) -{ - adapter_t padapter = BluetoothAdapterFind("Bluetooth"); - if (NONE == padapter){ - KPrintf("adapter find failed!\n"); - return; - } - /*Open adapter*/ - if (0 != padapter->done.NetAiitOpen(padapter)){ - KPrintf("adapter open failed!\n"); - return; - } - - - char rev_buffer[NAME_NUM_MAX]; - /* Initialize semaphore */ - re_sem = UserSemaphoreCreate(0); - /* receive buffer from serial port */ - padapter->done.NetAiitReceive(padapter,rev_buffer,strlen(rev_buffer),10000,false,NULL); - BluetoothWait(rev_buffer); - UserSemaphoreObtain(re_sem,-1); - - - printf("\n"); - for (int i=0;i -#include -#include -#include -#include -#include -adapter_t padapter; -/* a demo function to send message through command line using bluetooth*/ -/* first open bluetooth to start demo*/ -void BluetoothOpenDemo() -{ - /*Find from the list of registered adapters*/ - // adapter_t padapter = BluetoothAdapterFind("Bluetoot"); - padapter = BluetoothAdapterFind("Bluetooth"); - if (NONE == padapter){ - printf("adapter find failed!\n"); - return; - } - - /*Open adapter*/ - if (0 != padapter->done.NetAiitOpen(padapter)){ - printf("adapter open failed!\n"); - return; - } - -} -#ifndef SEPARATE_COMPILE -SHELL_EXPORT_CMD(SHELL_CMD_PERMISSION(0)|SHELL_CMD_TYPE(SHELL_TYPE_CMD_MAIN), -BluetoothOpenDemo, BluetoothOpenDemo, bluetooth send function ); -#endif - -void BluetoothSendDemo(int argc, char *argv[]) -{ - /*Find from the list of registered adapters*/ - bool v = false; - padapter->done.NetAiitSend(padapter, argv[1], strlen(argv[1]) ,true,10000,0, NULL,&v,NULL); - - -} -#ifndef SEPARATE_COMPILE -SHELL_EXPORT_CMD(SHELL_CMD_PERMISSION(0)|SHELL_CMD_TYPE(SHELL_TYPE_CMD_MAIN), -BluetoothSendDemo, BluetoothSendDemo, bluetooth send function ); -#endif - - diff --git a/APP_Framework/Applications/connection_app/ethernet_demo/Makefile b/APP_Framework/Applications/connection_app/ethernet_demo/Makefile deleted file mode 100644 index b008b225..00000000 --- a/APP_Framework/Applications/connection_app/ethernet_demo/Makefile +++ /dev/null @@ -1,3 +0,0 @@ -SRC_FILES := ethernet_demo.c - -include $(KERNEL_ROOT)/compiler.mk diff --git a/APP_Framework/Applications/connection_app/ethernet_demo/ethernet_demo.c b/APP_Framework/Applications/connection_app/ethernet_demo/ethernet_demo.c deleted file mode 100644 index 73f5548e..00000000 --- a/APP_Framework/Applications/connection_app/ethernet_demo/ethernet_demo.c +++ /dev/null @@ -1,197 +0,0 @@ -/* -* 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 ethernet_demo.c - * @brief Demo for ethernet function - * @version 1.0 - * @author AIIT XUOS Lab - * @date 2021.04.22 - */ -#include -#include -#include -#include - -static bool opened = false; - -void OpenEthernetMsg() -{ - struct AdapterAT *at_adapter = ATAdapterFind(ETHERNET_ADAPTER_ID); - if (!at_adapter) - printf("ATAdapterFind failed .\n"); - - if (!opened){ - opened = true; - at_adapter->parent.done.NetAiitOpen(&at_adapter->parent); - } -} - - -void SendEthernetMsg(int argc, char *argv[]) -{ - char ethernet_msg[128]; - if (argc >= 1){ - memset(ethernet_msg, 0, 128); - strncpy(ethernet_msg, argv[1], strlen(argv[1])); - printf("SendEthernetMsg(%s).\n", ethernet_msg); - } - - struct AdapterAT *at_adapter = ATAdapterFind(ETHERNET_ADAPTER_ID); - if (!at_adapter) - printf("ATAdapterFind failed .\n"); - - if (!opened){ - opened = true; - at_adapter->parent.done.NetAiitOpen(&at_adapter->parent); - } - - at_adapter->parent.done.NetAiitSend(&at_adapter->parent, ethernet_msg, strlen(ethernet_msg), true, 1000, 0, NULL, NULL, NULL); -} - -void RecvEthernetMsg() -{ - char ethernet_recv_msg[128]; - memset(ethernet_recv_msg, 0, sizeof(ethernet_recv_msg)); - struct AdapterAT *at_adapter = ATAdapterFind(ETHERNET_ADAPTER_ID); - if (!at_adapter) - printf("ATAdapterFind failed .\n"); - - if (!opened){ - opened = true; - at_adapter->parent.done.NetAiitOpen(&at_adapter->parent); - } - - while (1){ - memset(ethernet_recv_msg, 0, sizeof(ethernet_recv_msg)); - if (EOK == at_adapter->parent.done.NetAiitReceive(&at_adapter->parent, ethernet_recv_msg, 128, 40000, true, NULL)) - printf("ethernet_recv_msg (%s)\n", ethernet_recv_msg); - else - printf("ethernet_recv_msg failed .\n"); - } -} - -void DhcpEthernet() -{ - struct AdapterAT *at_adapter = ATAdapterFind(ETHERNET_ADAPTER_ID); - if (!at_adapter) - printf("ATAdapterFind failed .\n"); - - printf("Waiting for msg...\n"); - - if (!opened){ - opened = true; - at_adapter->parent.done.NetAiitOpen(&at_adapter->parent); - } - - if (EOK != at_adapter->atdone.ATOperateDHCP(at_adapter, 1)) - printf("EthernetNetstat failed \n"); -} - -void PingEthernet() -{ - char ethernet_recv_msg[128]; - memset(ethernet_recv_msg, 0, sizeof(ethernet_recv_msg)); - - struct AdapterAT *at_adapter = ATAdapterFind(ETHERNET_ADAPTER_ID); - if (!at_adapter) - printf("ATAdapterFind failed .\n"); - - printf("Waiting for msg...\n"); - struct PingResult result; - char *ip_str = "192.168.250.250"; - - if (!opened){ - opened = true; - at_adapter->parent.done.NetAiitOpen(&at_adapter->parent); - } - - if (EOK == at_adapter->atdone.ATPing(at_adapter, ip_str, &result)) - printf("EthernetPing success (%s)\n", result.ip_addr.ipv4); - else - printf("EthernetPing failed \n"); -} - -void SetUpEthernet() -{ - char ethernet_recv_msg[128]; - memset(ethernet_recv_msg, 0, sizeof(ethernet_recv_msg)); - - struct AdapterAT *at_adapter = ATAdapterFind(ETHERNET_ADAPTER_ID); - if (!at_adapter) - printf("ATAdapterFind failed .\n"); - - printf("Waiting for msg...\n"); - struct PingResult result; - - if (!opened){ - opened = true; - at_adapter->parent.done.NetAiitOpen(&at_adapter->parent); - } - - if (EOK == at_adapter->atdone.ATOperateUp(at_adapter)) - printf("EthernetSetUp success (%s)\n", result.ip_addr.ipv4); - else - printf("EthernetSetUp failed \n"); -} - -void NetstatEthernet() -{ - struct AdapterAT *at_adapter = ATAdapterFind(ETHERNET_ADAPTER_ID); - if (!at_adapter) - printf("ATAdapterFind failed .\n"); - - printf("Waiting for msg...\n"); - - if (!opened){ - opened = true; - at_adapter->parent.done.NetAiitOpen(&at_adapter->parent); - } - - if (EOK != at_adapter->atdone.ATNetstat(at_adapter)) - printf("EthernetNetstat failed \n"); -} - -void AtTestCmdEthernet(int argc, char *argv[]) -{ - char cmd[64]; - if (argc >= 1){ - memset(cmd, 0, sizeof(cmd)); - strncpy(cmd, argv[1], strlen(argv[1])); - printf("AT cmd send(%s).\n", cmd); - } - - strcat(cmd,"\r"); - struct AdapterAT* at_adapter = ATAdapterFind(ETHERNET_ADAPTER_ID); - - if (!opened){ - opened = true; - at_adapter->parent.done.NetAiitOpen(&at_adapter->parent); - } - - printf("Waiting for msg...\n"); - - // Send hfa21 handshake, start cmd mode. - ATOrderSend(at_adapter->agent, REPLY_TIME_OUT, NULL, "+++"); - UserTaskDelay(100); - - ATOrderSend(at_adapter->agent, REPLY_TIME_OUT, NULL, "a"); - - UserTaskDelay(2500); - - ATOrderSend(at_adapter->agent,REPLY_TIME_OUT, NULL,cmd); - UserTaskDelay(2500); - - ATOrderSend(at_adapter->agent,REPLY_TIME_OUT, NULL,"AT+Z\r"); - UserTaskDelay(5000); - -} diff --git a/APP_Framework/Applications/connection_app/nbiot_demo/Makefile b/APP_Framework/Applications/connection_app/nbiot_demo/Makefile deleted file mode 100644 index d897a9be..00000000 --- a/APP_Framework/Applications/connection_app/nbiot_demo/Makefile +++ /dev/null @@ -1,3 +0,0 @@ -SRC_FILES :=nbiot_demo.c - -include $(KERNEL_ROOT)/compiler.mk diff --git a/APP_Framework/Applications/connection_app/nbiot_demo/nbiot_demo.c b/APP_Framework/Applications/connection_app/nbiot_demo/nbiot_demo.c deleted file mode 100644 index a3c7d97f..00000000 --- a/APP_Framework/Applications/connection_app/nbiot_demo/nbiot_demo.c +++ /dev/null @@ -1,56 +0,0 @@ -/* -* 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 nbiot_demo.c - * @brief Demo for NBIoT function - * @version 1.0 - * @author AIIT XUOS Lab - * @date 2021.04.22 - */ - -#include -#include -#include -#include -#include - -extern void RegisterAdapterNBIoT(void); - -void NbiotEnable(void) -{ - struct AdapterAT* at_adapter = ATAdapterFind(NBIOT_ADAPTER_ID); - - UserTaskDelay(5000); - - at_adapter->parent.done.NetAiitOpen(&at_adapter->parent); - - printf("Waiting for msg...\n"); - - at_adapter->atdone.ATSocketCreate(at_adapter, 1, SOCKET_TYPE_STREAM, NET_TYPE_AF_INET); - UserTaskDelay(1000); - - struct AddressIpv4 addr; - addr.ipv4 = IpTint("115.236.53.226"); - at_adapter->atdone.ATSocketConnect(at_adapter, 1, addr, 8989, 0); - - int socket_fd = 1; - int count = 0; - - while (1) { - UserTaskDelay(1000); - at_adapter->parent.done.NetAiitSend((struct Adapter *)at_adapter, "AB30313233", 5, 0, 0, 0, 0, 0, &socket_fd); - count++; - if (count == 10) - break; - } -} diff --git a/APP_Framework/Applications/connection_app/wifi_demo/Makefile b/APP_Framework/Applications/connection_app/wifi_demo/Makefile deleted file mode 100644 index 72e65cb5..00000000 --- a/APP_Framework/Applications/connection_app/wifi_demo/Makefile +++ /dev/null @@ -1,3 +0,0 @@ -SRC_FILES :=wifi_demo.c - -include $(KERNEL_ROOT)/compiler.mk diff --git a/APP_Framework/Applications/connection_app/wifi_demo/wifi_demo.c b/APP_Framework/Applications/connection_app/wifi_demo/wifi_demo.c deleted file mode 100644 index 0459d106..00000000 --- a/APP_Framework/Applications/connection_app/wifi_demo/wifi_demo.c +++ /dev/null @@ -1,223 +0,0 @@ -/* -* 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 wifi_demo.c - * @brief Demo for wifi function - * @version 1.0 - * @author AIIT XUOS Lab - * @date 2021.04.22 - */ - -#include -#include - -void SendWiftMsg(int argc, char *argv[]) -{ - char wifi_msg[128]; - int len; - if (argc >= 1) { - memset(wifi_msg, 0, 128); - strncpy(wifi_msg, argv[1], (len = strlen(argv[1]))); - printf("SendWiftMsg(%s).\n", wifi_msg); - } - - struct Adapter* adapter = AdapterDeviceFindByName(ADAPTER_WIFI_NAME); - if (!adapter) { - printf("ATAdapterFind failed .\n"); - } - AdapterDeviceOpen(adapter); - - AdapterDeviceSend(adapter, wifi_msg, len); -} -SHELL_EXPORT_CMD(SHELL_CMD_PERMISSION(0)|SHELL_CMD_TYPE(SHELL_TYPE_CMD_MAIN)|SHELL_CMD_PARAM_NUM(0), SendWiftMsg, SendWiftMsg, SendWiftMsg); - -void RecvWifiMsg() -{ - char wifi_recv_msg[128]; - memset(wifi_recv_msg, 0, sizeof(wifi_recv_msg)); - struct Adapter* adapter = AdapterDeviceFindByName(ADAPTER_WIFI_NAME); - if (!adapter) { - printf("ATAdapterFind failed .\n"); - } - - AdapterDeviceOpen(adapter); - - while (1) { - memset(wifi_recv_msg, 0, sizeof(wifi_recv_msg)); - if (EOK == AdapterDeviceRecv(adapter, wifi_recv_msg, 128)) { - printf("wifi_recv_msg (%s)\n", wifi_recv_msg); - } else { - printf("wifi_recv_msg failed .\n"); - } - } -} -SHELL_EXPORT_CMD(SHELL_CMD_PERMISSION(0)|SHELL_CMD_TYPE(SHELL_TYPE_CMD_FUNC)|SHELL_CMD_PARAM_NUM(0), RecvWifiMsg, RecvWifiMsg, RecvWifiMsg); - -void SetUpWifi() -{ - char wifi_recv_msg[128]; - int baud_rate = BAUD_RATE_57600; - memset(wifi_recv_msg, 0, sizeof(wifi_recv_msg)); - struct Adapter* adapter = AdapterDeviceFindByName(ADAPTER_WIFI_NAME); - if (!adapter) { - printf("ATAdapterFind failed .\n"); - } - - printf("Waiting for msg...\n"); - AdapterDeviceOpen(adapter); - AdapterDeviceControl(adapter, OPE_INT, &baud_rate); - if (EOK == AdapterDeviceSetUp(adapter)) { - printf("SetUpWifi success \n"); - } else { - printf("SetUpWifi failed \n"); - } -} -SHELL_EXPORT_CMD(SHELL_CMD_PERMISSION(0)|SHELL_CMD_TYPE(SHELL_TYPE_CMD_FUNC)|SHELL_CMD_PARAM_NUM(0), SetUpWifi, SetUpWifi, SetUpWifi); - -void SetDownWifi() -{ - char wifi_recv_msg[128]; - memset(wifi_recv_msg, 0, sizeof(wifi_recv_msg)); - struct Adapter* adapter = AdapterDeviceFindByName(ADAPTER_WIFI_NAME); - if (!adapter) { - printf("ATAdapterFind failed .\n"); - } - - printf("Waiting for msg...\n"); - - AdapterDeviceOpen(adapter); - - if (EOK == AdapterDeviceSetDown(adapter)) { - printf("SetDownWifi success \n"); - } else { - printf("SetDownWifi failed \n"); - } -} -SHELL_EXPORT_CMD(SHELL_CMD_PERMISSION(0)|SHELL_CMD_TYPE(SHELL_TYPE_CMD_FUNC)|SHELL_CMD_PARAM_NUM(0), SetDownWifi, SetDownWifi, SetDownWifi); - -void SetAddrWifi() -{ - struct Adapter* adapter = AdapterDeviceFindByName(ADAPTER_WIFI_NAME); - if (!adapter) { - printf("ATAdapterFind failed .\n"); - } - - printf("Waiting for msg...\n"); - - AdapterDeviceOpen(adapter); - - if(EOK == AdapterDeviceSetAddr(adapter, "192.168.66.253", "255.255.255.0", "192.168.66.1")){ - printf("SetAddrWifi success \n"); - } else { - printf("SetAddrWifi failed \n"); - } -} -SHELL_EXPORT_CMD(SHELL_CMD_PERMISSION(0)|SHELL_CMD_TYPE(SHELL_TYPE_CMD_FUNC)|SHELL_CMD_PARAM_NUM(0), SetAddrWifi, SetAddrWifi, SetAddrWifi); - -void PingWifi() -{ - char wifi_recv_msg[128]; - memset(wifi_recv_msg, 0, sizeof(wifi_recv_msg)); - - struct Adapter* adapter = AdapterDeviceFindByName(ADAPTER_WIFI_NAME); - if (!adapter) { - printf("ATAdapterFind failed .\n"); - } - - printf("Waiting for msg...\n"); - //www.baidu.com - char *ip_str = "36.152.44.95"; - - AdapterDeviceOpen(adapter); - - if (EOK == AdapterDevicePing(adapter, ip_str)) { - printf("PingWifi success \n"); - } else { - printf("PingWifi failed \n"); - } -} -SHELL_EXPORT_CMD(SHELL_CMD_PERMISSION(0)|SHELL_CMD_TYPE(SHELL_TYPE_CMD_FUNC)|SHELL_CMD_PARAM_NUM(0), PingWifi, PingWifi, PingWifi); - -void NetstatWifi() -{ - struct Adapter* adapter = AdapterDeviceFindByName(ADAPTER_WIFI_NAME); - if (!adapter) { - printf("ATAdapterFind failed .\n"); - } - - printf("Waiting for msg...\n"); - - AdapterDeviceOpen(adapter); - - if (EOK == AdapterDeviceNetstat(adapter)) { - printf("NetstatWifi success \n"); - } else { - printf("NetstatWifi failed \n"); - } -} -SHELL_EXPORT_CMD(SHELL_CMD_PERMISSION(0)|SHELL_CMD_TYPE(SHELL_TYPE_CMD_FUNC)|SHELL_CMD_PARAM_NUM(0), NetstatWifi, NetstatWifi, NetstatWifi); - -int ConnectWifi() -{ - struct Adapter* adapter = AdapterDeviceFindByName(ADAPTER_WIFI_NAME); - - const char *ip = "192.168.66.33"; - const char *port = "12345"; - enum NetRoleType net_role = CLIENT; - enum IpType ip_type = IPV4; - - if (!adapter) { - printf("ATAdapterFind failed .\n"); - } - - printf("Waiting for msg...\n"); - - AdapterDeviceOpen(adapter); - - if (EOK == AdapterDeviceConnect(adapter, net_role, ip, port, ip_type)) { - printf("ConnectWifi success \n"); - } else { - printf("ConnectWifi failed \n"); - } -} -SHELL_EXPORT_CMD(SHELL_CMD_PERMISSION(0)|SHELL_CMD_TYPE(SHELL_TYPE_CMD_FUNC)|SHELL_CMD_PARAM_NUM(0), ConnectWifi, ConnectWifi, ConnectWifi); - -void AtTestCmdWifi(int argc, char *argv[]) -{ - char cmd[64]; - if (argc >= 1) { - memset(cmd, 0, sizeof(cmd)); - strncpy(cmd, argv[1], strlen(argv[1])); - printf("AT cmd send(%s).\n", cmd); - } - - strcat(cmd,"\r"); - struct Adapter* adapter = AdapterDeviceFindByName(ADAPTER_WIFI_NAME); - // AdapterDeviceOpen(adapter); - - printf("Waiting for msg...\n"); - - ATOrderSend(adapter->agent, REPLY_TIME_OUT, NULL, "+++"); - UserTaskDelay(100); - - ATOrderSend(adapter->agent, REPLY_TIME_OUT, NULL, "a"); - - UserTaskDelay(2500); - - ATOrderSend(adapter->agent,REPLY_TIME_OUT, NULL,cmd); - UserTaskDelay(2500); - - ATOrderSend(adapter->agent,REPLY_TIME_OUT, NULL,"AT+Z\r"); - UserTaskDelay(5000); -} -SHELL_EXPORT_CMD(SHELL_CMD_PERMISSION(0)|SHELL_CMD_TYPE(SHELL_TYPE_CMD_MAIN)|SHELL_CMD_PARAM_NUM(0), AtTestCmdWifi, AtTestCmdWifi, AtTestCmdWifi); diff --git a/APP_Framework/Applications/connection_app/zigbee_demo/Makefile b/APP_Framework/Applications/connection_app/zigbee_demo/Makefile deleted file mode 100644 index 5a35963e..00000000 --- a/APP_Framework/Applications/connection_app/zigbee_demo/Makefile +++ /dev/null @@ -1,3 +0,0 @@ -SRC_FILES := zigbee_receive_demo.c -# zigbee_send_demo.c zigbee_receive_demo.c -include $(KERNEL_ROOT)/compiler.mk \ No newline at end of file diff --git a/APP_Framework/Applications/connection_app/zigbee_demo/zigbee_receive_demo.c b/APP_Framework/Applications/connection_app/zigbee_demo/zigbee_receive_demo.c deleted file mode 100644 index 18ff257d..00000000 --- a/APP_Framework/Applications/connection_app/zigbee_demo/zigbee_receive_demo.c +++ /dev/null @@ -1,88 +0,0 @@ -/* -* 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: zigbee_receive_demo.c -* @brief: using zigbee to receive message -* @version: 1.0 -* @author: AIIT XUOS Lab -* @date: 2021/4/30 -* -*/ -#include -#include -#include -#include -#include -#include -static int re_sem; - -static int buff_sem; - - -/*Critical zone protection function for*/ -void ZigbeeWait(char *rev_buffer) -{ - while(1){ - if (strlen(rev_buffer)>1){ - UserSemaphoreAbandon(re_sem); - break; - } - } - -} - - -/* receive message from another zigbee device*/ -void ZigbeeReceiveDemo(int argc, char *argv[]) -{ - adapter_t padapter = ZigbeeAdapterFind("zigbee"); - if (NONE == padapter){ - KPrintf("adapter find failed!\n"); - return; - } - /*Open adapter*/ - if (0 != padapter->done.NetAiitOpen(padapter)){ - KPrintf("adapter open failed!\n"); - return; - } - - - char rev_buffer[NAME_NUM_MAX]; - /* Initialize semaphore */ - re_sem = UserSemaphoreCreate(0); - /* receive buffer from serial port */ - padapter->done.NetAiitReceive(padapter,rev_buffer,strlen(rev_buffer),10000,false,NULL); - ZigbeeWait(rev_buffer); - UserSemaphoreObtain(re_sem,-1); - - - printf("\n"); - for (int i=0;i -#include -#include -#include -#include -#include -adapter_t padapter; -/* a demo function to send message through command line using zigbee*/ -/* first open zigbee to start demo*/ -void ZigbeeOpenDemo() -{ - /*Find from the list of registered adapters*/ - // adapter_t padapter = ZigbeeAdapterFind("zigbee"); - padapter = ZigbeeAdapterFind("zigbee"); - if (NONE == padapter){ - printf("adapter find failed!\n"); - return; - } - - /*Open adapter*/ - if (0 != padapter->done.NetAiitOpen(padapter)){ - printf("adapter open failed!\n"); - return; - } - -} -#ifndef SEPARATE_COMPILE -SHELL_EXPORT_CMD(SHELL_CMD_PERMISSION(0)|SHELL_CMD_TYPE(SHELL_TYPE_CMD_MAIN), -ZigbeeOpenDemo, ZigbeeOpenDemo, zigbee send function ); -#endif - -void ZigbeeSendDemo(int argc, char *argv[]) -{ - /*Find from the list of registered adapters*/ - bool v = false; - padapter->done.NetAiitSend(padapter, argv[1], strlen(argv[1]) ,true,10000,0, NULL,&v,NULL); - - -} -#ifndef SEPARATE_COMPILE -SHELL_EXPORT_CMD(SHELL_CMD_PERMISSION(0)|SHELL_CMD_TYPE(SHELL_TYPE_CMD_MAIN), -ZigbeeSendDemo, ZigbeeSendDemo, zigbee send function ); -#endif - -