diff --git a/.vscode/c_cpp_properties.json b/.vscode/c_cpp_properties.json index 74a44e2..1c5a1d7 100644 --- a/.vscode/c_cpp_properties.json +++ b/.vscode/c_cpp_properties.json @@ -15,7 +15,7 @@ "${IDF_PATH}/components/soc/include", "${IDF_PATH}/components/soc/esp32/include", "${IDF_PATH}/components/tcpip_adapter/include", - "${workspaceRoot}/examples/send_msg/build/include", + "${workspaceRoot}/examples/hello_world/build/include", "${workspaceRoot}/include", "${workspaceRoot}/src" ], diff --git a/examples/send_msg/Makefile b/examples/hello_world/Makefile similarity index 56% rename from examples/send_msg/Makefile rename to examples/hello_world/Makefile index 6ef9a37..1038c2d 100644 --- a/examples/send_msg/Makefile +++ b/examples/hello_world/Makefile @@ -1,3 +1,3 @@ -PROJECT_NAME := send_msg +PROJECT_NAME := hello_world include $(IDF_PATH)/make/project.mk diff --git a/examples/send_msg/components/ttn-esp32 b/examples/hello_world/components/ttn-esp32 similarity index 100% rename from examples/send_msg/components/ttn-esp32 rename to examples/hello_world/components/ttn-esp32 diff --git a/examples/send_msg/main/component.mk b/examples/hello_world/main/component.mk similarity index 100% rename from examples/send_msg/main/component.mk rename to examples/hello_world/main/component.mk diff --git a/examples/send_msg/main/main.cpp b/examples/hello_world/main/main.cpp similarity index 100% rename from examples/send_msg/main/main.cpp rename to examples/hello_world/main/main.cpp