From 3ff03bf452d2ea8bd5fbce01344c0bcdd47dc6b4 Mon Sep 17 00:00:00 2001 From: Lingkai Dong Date: Wed, 8 Jul 2020 17:48:08 +0100 Subject: [PATCH] Move cellular framework into connectivity --- {features => connectivity}/cellular/.gitignore | 0 {features => connectivity}/cellular/README.md | 0 {features => connectivity}/cellular/framework/API/ATHandler.h | 0 .../cellular/framework/API/CellularContext.h | 0 .../cellular/framework/API/CellularDevice.h | 0 .../cellular/framework/API/CellularInformation.h | 0 .../cellular/framework/API/CellularNetwork.h | 0 {features => connectivity}/cellular/framework/API/CellularSMS.h | 0 .../cellular/framework/AT/AT_CellularContext.cpp | 0 .../cellular/framework/AT/AT_CellularContext.h | 0 .../cellular/framework/AT/AT_CellularDevice.cpp | 0 .../cellular/framework/AT/AT_CellularDevice.h | 0 .../cellular/framework/AT/AT_CellularInformation.cpp | 0 .../cellular/framework/AT/AT_CellularInformation.h | 0 .../cellular/framework/AT/AT_CellularNetwork.cpp | 0 .../cellular/framework/AT/AT_CellularNetwork.h | 0 .../cellular/framework/AT/AT_CellularSMS.cpp | 0 {features => connectivity}/cellular/framework/AT/AT_CellularSMS.h | 0 .../cellular/framework/AT/AT_CellularStack.cpp | 0 .../cellular/framework/AT/AT_CellularStack.h | 0 .../cellular/framework/AT/AT_ControlPlane_netif.cpp | 0 .../cellular/framework/AT/AT_ControlPlane_netif.h | 0 {features => connectivity}/cellular/framework/common/APN_db.cpp | 0 {features => connectivity}/cellular/framework/common/APN_db.h | 0 .../cellular/framework/common/CellularCommon.h | 0 .../cellular/framework/common/CellularList.h | 0 .../cellular/framework/common/CellularLog.cpp | 0 .../cellular/framework/common/CellularLog.h | 0 .../cellular/framework/common/CellularUtil.cpp | 0 .../cellular/framework/common/CellularUtil.h | 0 .../cellular/framework/device/ATHandler.cpp | 0 .../cellular/framework/device/CellularContext.cpp | 0 .../cellular/framework/device/CellularDevice.cpp | 0 .../cellular/framework/device/CellularStateMachine.cpp | 0 .../cellular/framework/device/CellularStateMachine.h | 0 {features => connectivity}/cellular/mbed_lib.json | 0 36 files changed, 0 insertions(+), 0 deletions(-) rename {features => connectivity}/cellular/.gitignore (100%) rename {features => connectivity}/cellular/README.md (100%) rename {features => connectivity}/cellular/framework/API/ATHandler.h (100%) rename {features => connectivity}/cellular/framework/API/CellularContext.h (100%) rename {features => connectivity}/cellular/framework/API/CellularDevice.h (100%) rename {features => connectivity}/cellular/framework/API/CellularInformation.h (100%) rename {features => connectivity}/cellular/framework/API/CellularNetwork.h (100%) rename {features => connectivity}/cellular/framework/API/CellularSMS.h (100%) rename {features => connectivity}/cellular/framework/AT/AT_CellularContext.cpp (100%) rename {features => connectivity}/cellular/framework/AT/AT_CellularContext.h (100%) rename {features => connectivity}/cellular/framework/AT/AT_CellularDevice.cpp (100%) rename {features => connectivity}/cellular/framework/AT/AT_CellularDevice.h (100%) rename {features => connectivity}/cellular/framework/AT/AT_CellularInformation.cpp (100%) rename {features => connectivity}/cellular/framework/AT/AT_CellularInformation.h (100%) rename {features => connectivity}/cellular/framework/AT/AT_CellularNetwork.cpp (100%) rename {features => connectivity}/cellular/framework/AT/AT_CellularNetwork.h (100%) rename {features => connectivity}/cellular/framework/AT/AT_CellularSMS.cpp (100%) rename {features => connectivity}/cellular/framework/AT/AT_CellularSMS.h (100%) rename {features => connectivity}/cellular/framework/AT/AT_CellularStack.cpp (100%) rename {features => connectivity}/cellular/framework/AT/AT_CellularStack.h (100%) rename {features => connectivity}/cellular/framework/AT/AT_ControlPlane_netif.cpp (100%) rename {features => connectivity}/cellular/framework/AT/AT_ControlPlane_netif.h (100%) rename {features => connectivity}/cellular/framework/common/APN_db.cpp (100%) rename {features => connectivity}/cellular/framework/common/APN_db.h (100%) rename {features => connectivity}/cellular/framework/common/CellularCommon.h (100%) rename {features => connectivity}/cellular/framework/common/CellularList.h (100%) rename {features => connectivity}/cellular/framework/common/CellularLog.cpp (100%) rename {features => connectivity}/cellular/framework/common/CellularLog.h (100%) rename {features => connectivity}/cellular/framework/common/CellularUtil.cpp (100%) rename {features => connectivity}/cellular/framework/common/CellularUtil.h (100%) rename {features => connectivity}/cellular/framework/device/ATHandler.cpp (100%) rename {features => connectivity}/cellular/framework/device/CellularContext.cpp (100%) rename {features => connectivity}/cellular/framework/device/CellularDevice.cpp (100%) rename {features => connectivity}/cellular/framework/device/CellularStateMachine.cpp (100%) rename {features => connectivity}/cellular/framework/device/CellularStateMachine.h (100%) rename {features => connectivity}/cellular/mbed_lib.json (100%) diff --git a/features/cellular/.gitignore b/connectivity/cellular/.gitignore similarity index 100% rename from features/cellular/.gitignore rename to connectivity/cellular/.gitignore diff --git a/features/cellular/README.md b/connectivity/cellular/README.md similarity index 100% rename from features/cellular/README.md rename to connectivity/cellular/README.md diff --git a/features/cellular/framework/API/ATHandler.h b/connectivity/cellular/framework/API/ATHandler.h similarity index 100% rename from features/cellular/framework/API/ATHandler.h rename to connectivity/cellular/framework/API/ATHandler.h diff --git a/features/cellular/framework/API/CellularContext.h b/connectivity/cellular/framework/API/CellularContext.h similarity index 100% rename from features/cellular/framework/API/CellularContext.h rename to connectivity/cellular/framework/API/CellularContext.h diff --git a/features/cellular/framework/API/CellularDevice.h b/connectivity/cellular/framework/API/CellularDevice.h similarity index 100% rename from features/cellular/framework/API/CellularDevice.h rename to connectivity/cellular/framework/API/CellularDevice.h diff --git a/features/cellular/framework/API/CellularInformation.h b/connectivity/cellular/framework/API/CellularInformation.h similarity index 100% rename from features/cellular/framework/API/CellularInformation.h rename to connectivity/cellular/framework/API/CellularInformation.h diff --git a/features/cellular/framework/API/CellularNetwork.h b/connectivity/cellular/framework/API/CellularNetwork.h similarity index 100% rename from features/cellular/framework/API/CellularNetwork.h rename to connectivity/cellular/framework/API/CellularNetwork.h diff --git a/features/cellular/framework/API/CellularSMS.h b/connectivity/cellular/framework/API/CellularSMS.h similarity index 100% rename from features/cellular/framework/API/CellularSMS.h rename to connectivity/cellular/framework/API/CellularSMS.h diff --git a/features/cellular/framework/AT/AT_CellularContext.cpp b/connectivity/cellular/framework/AT/AT_CellularContext.cpp similarity index 100% rename from features/cellular/framework/AT/AT_CellularContext.cpp rename to connectivity/cellular/framework/AT/AT_CellularContext.cpp diff --git a/features/cellular/framework/AT/AT_CellularContext.h b/connectivity/cellular/framework/AT/AT_CellularContext.h similarity index 100% rename from features/cellular/framework/AT/AT_CellularContext.h rename to connectivity/cellular/framework/AT/AT_CellularContext.h diff --git a/features/cellular/framework/AT/AT_CellularDevice.cpp b/connectivity/cellular/framework/AT/AT_CellularDevice.cpp similarity index 100% rename from features/cellular/framework/AT/AT_CellularDevice.cpp rename to connectivity/cellular/framework/AT/AT_CellularDevice.cpp diff --git a/features/cellular/framework/AT/AT_CellularDevice.h b/connectivity/cellular/framework/AT/AT_CellularDevice.h similarity index 100% rename from features/cellular/framework/AT/AT_CellularDevice.h rename to connectivity/cellular/framework/AT/AT_CellularDevice.h diff --git a/features/cellular/framework/AT/AT_CellularInformation.cpp b/connectivity/cellular/framework/AT/AT_CellularInformation.cpp similarity index 100% rename from features/cellular/framework/AT/AT_CellularInformation.cpp rename to connectivity/cellular/framework/AT/AT_CellularInformation.cpp diff --git a/features/cellular/framework/AT/AT_CellularInformation.h b/connectivity/cellular/framework/AT/AT_CellularInformation.h similarity index 100% rename from features/cellular/framework/AT/AT_CellularInformation.h rename to connectivity/cellular/framework/AT/AT_CellularInformation.h diff --git a/features/cellular/framework/AT/AT_CellularNetwork.cpp b/connectivity/cellular/framework/AT/AT_CellularNetwork.cpp similarity index 100% rename from features/cellular/framework/AT/AT_CellularNetwork.cpp rename to connectivity/cellular/framework/AT/AT_CellularNetwork.cpp diff --git a/features/cellular/framework/AT/AT_CellularNetwork.h b/connectivity/cellular/framework/AT/AT_CellularNetwork.h similarity index 100% rename from features/cellular/framework/AT/AT_CellularNetwork.h rename to connectivity/cellular/framework/AT/AT_CellularNetwork.h diff --git a/features/cellular/framework/AT/AT_CellularSMS.cpp b/connectivity/cellular/framework/AT/AT_CellularSMS.cpp similarity index 100% rename from features/cellular/framework/AT/AT_CellularSMS.cpp rename to connectivity/cellular/framework/AT/AT_CellularSMS.cpp diff --git a/features/cellular/framework/AT/AT_CellularSMS.h b/connectivity/cellular/framework/AT/AT_CellularSMS.h similarity index 100% rename from features/cellular/framework/AT/AT_CellularSMS.h rename to connectivity/cellular/framework/AT/AT_CellularSMS.h diff --git a/features/cellular/framework/AT/AT_CellularStack.cpp b/connectivity/cellular/framework/AT/AT_CellularStack.cpp similarity index 100% rename from features/cellular/framework/AT/AT_CellularStack.cpp rename to connectivity/cellular/framework/AT/AT_CellularStack.cpp diff --git a/features/cellular/framework/AT/AT_CellularStack.h b/connectivity/cellular/framework/AT/AT_CellularStack.h similarity index 100% rename from features/cellular/framework/AT/AT_CellularStack.h rename to connectivity/cellular/framework/AT/AT_CellularStack.h diff --git a/features/cellular/framework/AT/AT_ControlPlane_netif.cpp b/connectivity/cellular/framework/AT/AT_ControlPlane_netif.cpp similarity index 100% rename from features/cellular/framework/AT/AT_ControlPlane_netif.cpp rename to connectivity/cellular/framework/AT/AT_ControlPlane_netif.cpp diff --git a/features/cellular/framework/AT/AT_ControlPlane_netif.h b/connectivity/cellular/framework/AT/AT_ControlPlane_netif.h similarity index 100% rename from features/cellular/framework/AT/AT_ControlPlane_netif.h rename to connectivity/cellular/framework/AT/AT_ControlPlane_netif.h diff --git a/features/cellular/framework/common/APN_db.cpp b/connectivity/cellular/framework/common/APN_db.cpp similarity index 100% rename from features/cellular/framework/common/APN_db.cpp rename to connectivity/cellular/framework/common/APN_db.cpp diff --git a/features/cellular/framework/common/APN_db.h b/connectivity/cellular/framework/common/APN_db.h similarity index 100% rename from features/cellular/framework/common/APN_db.h rename to connectivity/cellular/framework/common/APN_db.h diff --git a/features/cellular/framework/common/CellularCommon.h b/connectivity/cellular/framework/common/CellularCommon.h similarity index 100% rename from features/cellular/framework/common/CellularCommon.h rename to connectivity/cellular/framework/common/CellularCommon.h diff --git a/features/cellular/framework/common/CellularList.h b/connectivity/cellular/framework/common/CellularList.h similarity index 100% rename from features/cellular/framework/common/CellularList.h rename to connectivity/cellular/framework/common/CellularList.h diff --git a/features/cellular/framework/common/CellularLog.cpp b/connectivity/cellular/framework/common/CellularLog.cpp similarity index 100% rename from features/cellular/framework/common/CellularLog.cpp rename to connectivity/cellular/framework/common/CellularLog.cpp diff --git a/features/cellular/framework/common/CellularLog.h b/connectivity/cellular/framework/common/CellularLog.h similarity index 100% rename from features/cellular/framework/common/CellularLog.h rename to connectivity/cellular/framework/common/CellularLog.h diff --git a/features/cellular/framework/common/CellularUtil.cpp b/connectivity/cellular/framework/common/CellularUtil.cpp similarity index 100% rename from features/cellular/framework/common/CellularUtil.cpp rename to connectivity/cellular/framework/common/CellularUtil.cpp diff --git a/features/cellular/framework/common/CellularUtil.h b/connectivity/cellular/framework/common/CellularUtil.h similarity index 100% rename from features/cellular/framework/common/CellularUtil.h rename to connectivity/cellular/framework/common/CellularUtil.h diff --git a/features/cellular/framework/device/ATHandler.cpp b/connectivity/cellular/framework/device/ATHandler.cpp similarity index 100% rename from features/cellular/framework/device/ATHandler.cpp rename to connectivity/cellular/framework/device/ATHandler.cpp diff --git a/features/cellular/framework/device/CellularContext.cpp b/connectivity/cellular/framework/device/CellularContext.cpp similarity index 100% rename from features/cellular/framework/device/CellularContext.cpp rename to connectivity/cellular/framework/device/CellularContext.cpp diff --git a/features/cellular/framework/device/CellularDevice.cpp b/connectivity/cellular/framework/device/CellularDevice.cpp similarity index 100% rename from features/cellular/framework/device/CellularDevice.cpp rename to connectivity/cellular/framework/device/CellularDevice.cpp diff --git a/features/cellular/framework/device/CellularStateMachine.cpp b/connectivity/cellular/framework/device/CellularStateMachine.cpp similarity index 100% rename from features/cellular/framework/device/CellularStateMachine.cpp rename to connectivity/cellular/framework/device/CellularStateMachine.cpp diff --git a/features/cellular/framework/device/CellularStateMachine.h b/connectivity/cellular/framework/device/CellularStateMachine.h similarity index 100% rename from features/cellular/framework/device/CellularStateMachine.h rename to connectivity/cellular/framework/device/CellularStateMachine.h diff --git a/features/cellular/mbed_lib.json b/connectivity/cellular/mbed_lib.json similarity index 100% rename from features/cellular/mbed_lib.json rename to connectivity/cellular/mbed_lib.json