ESP32 OTA firmware updates via WiFi mesh network.
https://hendrikschutter.com
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
419 B
17 lines
419 B
# |
|
# This is a project Makefile for the test subproject. |
|
# |
|
|
|
PROJECT_NAME := unit_test_mesh_ota |
|
|
|
# Include the components directory of the main application: |
|
# |
|
EXTRA_COMPONENT_DIRS := $(realpath ../components) |
|
|
|
# Set the components to include the tests for. |
|
# This can be overriden from the command line |
|
# (e.g. 'make TEST_COMPONENTS=xxxx flash monitor') |
|
# |
|
TEST_COMPONENTS ?= mesh_ota |
|
|
|
include $(IDF_PATH)/make/project.mk
|
|
|