Skip to content

Commit 57a637e

Browse files
committed
move workspace/common/wifi to platform/ because it is platform dependent code from mros2
1 parent b0c87cf commit 57a637e

File tree

13 files changed

+11
-11
lines changed

13 files changed

+11
-11
lines changed

Readme.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,10 +29,10 @@ git clone --recursive https://github.com/mROS-base/mros2-esp32.git
2929
cd mros2-esp32
3030
```
3131
### Change WiFi SSID/Pass
32-
Change ESP_WIFI_SSID and ESP_WIFI_PASS in ```/workspace/common/wifi/wifi.h```.
32+
Change ESP_WIFI_SSID and ESP_WIFI_PASS in `platform/wifi/wifi.h`.
3333

3434
### Change IP address
35-
Change IP address in ```/include/rtps/config.h```.
35+
Change IP address in `platform/rtps/config.h`.
3636

3737
When using DHCP, it is also necessary to specify the IP address.
3838
Flash the app and check the IP address from startup log.
File renamed without changes.
File renamed without changes.
File renamed without changes.

workspace/echoback_string/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# CMakeLists in this exact order for cmake to work correctly
33
cmake_minimum_required(VERSION 3.16)
44

5-
set(EXTRA_COMPONENT_DIRS ../.. ../common)
5+
set(EXTRA_COMPONENT_DIRS ../../ ../../platform)
66
add_compile_options(-w)
77

88
include($ENV{IDF_PATH}/tools/cmake/project.cmake)

workspace/echoreply_string/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# CMakeLists in this exact order for cmake to work correctly
33
cmake_minimum_required(VERSION 3.16)
44

5-
set(EXTRA_COMPONENT_DIRS ../../ ../common)
5+
set(EXTRA_COMPONENT_DIRS ../../ ../../platform)
66
add_compile_options(-w)
77

88
include($ENV{IDF_PATH}/tools/cmake/project.cmake)

workspace/m5stack_sample/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# CMakeLists in this exact order for cmake to work correctly
33
cmake_minimum_required(VERSION 3.16)
44

5-
set(EXTRA_COMPONENT_DIRS ../../ ../common)
5+
set(EXTRA_COMPONENT_DIRS ../../ ../../platform)
66
add_compile_options(-w)
77

88
include($ENV{IDF_PATH}/tools/cmake/project.cmake)

workspace/pub_float32/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# CMakeLists in this exact order for cmake to work correctly
33
cmake_minimum_required(VERSION 3.16)
44

5-
set(EXTRA_COMPONENT_DIRS ../../ ../common)
5+
set(EXTRA_COMPONENT_DIRS ../../ ../../platform)
66
add_compile_options(-w)
77

88
include($ENV{IDF_PATH}/tools/cmake/project.cmake)

workspace/pub_image/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# CMakeLists in this exact order for cmake to work correctly
33
cmake_minimum_required(VERSION 3.16)
44

5-
set(EXTRA_COMPONENT_DIRS ../../ ../common)
5+
set(EXTRA_COMPONENT_DIRS ../../ ../../platform)
66
add_compile_options(-w)
77

88
include($ENV{IDF_PATH}/tools/cmake/project.cmake)

workspace/pub_long_string_sub_crc/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# CMakeLists in this exact order for cmake to work correctly
33
cmake_minimum_required(VERSION 3.16)
44

5-
set(EXTRA_COMPONENT_DIRS ../../ ../common)
5+
set(EXTRA_COMPONENT_DIRS ../../ ../../platform)
66
add_compile_options(-w)
77

88
include($ENV{IDF_PATH}/tools/cmake/project.cmake)

0 commit comments

Comments
 (0)