Skip to content

Commit aa6774e

Browse files
committed
app_renaming: Rename all applications by adding "_" to make more readable
README.md also modified slightly Signed-off-by: Piyush Shah <[email protected]>
1 parent 530416e commit aa6774e

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

68 files changed

+46
-40
lines changed

.gitlab-ci.yml

+7-7
Original file line numberDiff line numberDiff line change
@@ -27,30 +27,30 @@ build_demo:
2727
- cd esp-idf
2828
- ./tools/ci/mirror-submodule-update.sh
2929
- cd ..
30-
- cd 1hello_world
30+
- cd 1_hello_world
3131
- make defconfig
3232
- make
3333
- cd ../
34-
- cd 2outlet
34+
- cd 2_drivers
3535
- make defconfig
3636
- make
3737
- cd ../
38-
- cd 3wifi_connection
38+
- cd 3_wifi_connection
3939
- make defconfig
4040
- make
4141
- cd ../
42-
- cd 4network_config
42+
- cd 4_network_config
4343
- make defconfig
4444
- make
4545
- cd ../
46-
- cd 5cloud
46+
- cd 5_cloud
4747
- make defconfig
4848
- make
4949
- cd ../
50-
- cd 6ota
50+
- cd 6_ota
5151
- make defconfig
5252
- make
5353
- cd ../
54-
- cd 7mfg
54+
- cd 7_mfg
5555
- make defconfig
5656
- make

1hello_world/CMakeLists.txt renamed to 1_hello_world/CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@
33
cmake_minimum_required(VERSION 3.5)
44

55
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
6-
project(1hello-world)
6+
project(1_hello_world)

1hello_world/Makefile renamed to 1_hello_world/Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# project subdirectory.
44
#
55

6-
PROJECT_NAME := 1hello-world
6+
PROJECT_NAME := 1_hello_world
77

88
include $(IDF_PATH)/make/project.mk
99

File renamed without changes.
File renamed without changes.
File renamed without changes.

2outlet/CMakeLists.txt renamed to 2_drivers/CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ cmake_minimum_required(VERSION 3.5)
55
set(EXTRA_COMPONENT_DIRS ${CMAKE_CURRENT_LIST_DIR}/../components)
66

77
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
8-
project(2outlet)
8+
project(2_drivers)

2outlet/Makefile renamed to 2_drivers/Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# project subdirectory.
44
#
55

6-
PROJECT_NAME := 2outlet
6+
PROJECT_NAME := 2_drivers
77

88
EXTRA_COMPONENT_DIRS += $(PROJECT_PATH)/../components
99

File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

3wifi_connection/CMakeLists.txt renamed to 3_wifi_connection/CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ cmake_minimum_required(VERSION 3.5)
55
set(EXTRA_COMPONENT_DIRS ${CMAKE_CURRENT_LIST_DIR}/../components)
66

77
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
8-
project(3wifi_connection)
8+
project(3_wifi_connection)

4network_config/Makefile renamed to 3_wifi_connection/Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# project subdirectory.
44
#
55

6-
PROJECT_NAME := 4network_config
6+
PROJECT_NAME := 3_wifi_connection
77

88
EXTRA_COMPONENT_DIRS += $(PROJECT_PATH)/../components
99

File renamed without changes.
File renamed without changes.

4network_config/CMakeLists.txt renamed to 4_network_config/CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ cmake_minimum_required(VERSION 3.5)
55
set(EXTRA_COMPONENT_DIRS ${CMAKE_CURRENT_LIST_DIR}/../components)
66

77
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
8-
project(4wifi_connection)
8+
project(4_wifi_connection)

3wifi_connection/Makefile renamed to 4_network_config/Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# project subdirectory.
44
#
55

6-
PROJECT_NAME := 3wifi_connection
6+
PROJECT_NAME := 4_network_config
77

88
EXTRA_COMPONENT_DIRS += $(PROJECT_PATH)/../components
99

File renamed without changes.
File renamed without changes.
File renamed without changes.

5cloud/CMakeLists.txt renamed to 5_cloud/CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ cmake_minimum_required(VERSION 3.5)
55
set(EXTRA_COMPONENT_DIRS ${CMAKE_CURRENT_LIST_DIR}/../components)
66

77
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
8-
project(5cloud)
8+
project(5_cloud)

5cloud/Makefile renamed to 5_cloud/Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# project subdirectory.
44
#
55

6-
PROJECT_NAME := 5cloud
6+
PROJECT_NAME := 5_cloud
77

88
EXTRA_COMPONENT_DIRS += $(PROJECT_PATH)/../components
99

File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

6ota/CMakeLists.txt renamed to 6_ota/CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ cmake_minimum_required(VERSION 3.5)
55
set(EXTRA_COMPONENT_DIRS ${CMAKE_CURRENT_LIST_DIR}/../components)
66

77
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
8-
project(6ota)
8+
project(6_ota)

6ota/Makefile renamed to 6_ota/Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# project subdirectory.
44
#
55

6-
PROJECT_NAME := 6ota
6+
PROJECT_NAME := 6_ota
77

88
EXTRA_COMPONENT_DIRS += $(PROJECT_PATH)/../components
99

File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

7mfg/CMakeLists.txt renamed to 7_mfg/CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ cmake_minimum_required(VERSION 3.5)
55
set(EXTRA_COMPONENT_DIRS ${CMAKE_CURRENT_LIST_DIR}/../components)
66

77
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
8-
project(7mfg)
8+
project(7_mfg)

7mfg/Makefile renamed to 7_mfg/Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# project subdirectory.
44
#
55

6-
PROJECT_NAME := 7mfg
6+
PROJECT_NAME := 7_mfg
77

88
EXTRA_COMPONENT_DIRS += $(PROJECT_PATH)/../components
99

File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

README.md

+25-19

0 commit comments

Comments
 (0)