From f9928a1a08c57fe853888119a996c3acc98ee09d Mon Sep 17 00:00:00 2001 From: Johannes Stoelp Date: Fri, 14 Jan 2022 23:51:05 +0100 Subject: Initial version of nodemcuv2 dhcp server Able to offer IP address + DNS/Gateway ... Worked with devices at my hand. --- platformio.ini | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 platformio.ini (limited to 'platformio.ini') diff --git a/platformio.ini b/platformio.ini new file mode 100644 index 0000000..4fa5c0f --- /dev/null +++ b/platformio.ini @@ -0,0 +1,20 @@ +; Copyright (c) 2022 Johannes Stoelp + +; Build embedded target. +[env:nodemcuv2] +platform = espressif8266 +board = nodemcuv2 +framework = arduino +build_flags = -Wextra +; Ignore tests in test/native for this target. +test_ignore = native + +; Build host native target. +[env:native] +platform = native +targets = test +lib_deps = google/googletest@^1.10.0 +build_flags = -lpthread -lgtest_main +; Turn off compat mode. +; https://community.platformio.org/t/googletest-problem-with-compilation-process/12048/12 +lib_compat_mode = off -- cgit v1.2.3