From f4b8e3e7ec21ab095eef454cf04d1da3a9fbf1e0 Mon Sep 17 00:00:00 2001 From: Ray Wang Date: Wed, 31 Jul 2024 19:07:14 -0400 Subject: [PATCH] add comments in platformio.ini about how to build the firmware for Linux --- platformio.ini | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/platformio.ini b/platformio.ini index 7ce4b253..18c82ae1 100644 --- a/platformio.ini +++ b/platformio.ini @@ -47,15 +47,22 @@ lib_deps = build_src_filter = +<*> - -- monitor_speed=115200 - +; The following env is for syntax highlighting only, +; it is NOT for building the firmware for Linux. +; To build the firmware for Linux, please follow: +; https://openthings.freshdesk.com/support/solutions/articles/5000631599 [env:linux] platform = native build_flags = ${env.build_flags} -DOSPI +; The following env is for syntax highlighting only, +; it is NOT for building the firmware for Linux. +; To build the firmware for Linux, please follow: +; https://openthings.freshdesk.com/support/solutions/articles/5000631599 [env:demo] platform = native build_flags = ${env.build_flags} - -DDEMO \ No newline at end of file + -DDEMO