From fd54fa70af1fc76c0a8a988bdaec471ff190a9e5 Mon Sep 17 00:00:00 2001 From: Advaith Menon <83835839+advaithm582@users.noreply.github.com> Date: Tue, 16 Sep 2025 15:57:18 -0400 Subject: [PATCH] Modify Makefile to disable unnecessary stdout in setport * make setport now only outputs environment variables to the terminal. To set the port your Arduino is on, run: eval $(make setport) --- Makefile.global | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile.global b/Makefile.global index f3406cd..93e1703 100644 --- a/Makefile.global +++ b/Makefile.global @@ -11,7 +11,7 @@ build: arduino-cli compile --fqbn esp32:esp32:esp32c6 . setport: - $(PYTHON) ../scripts/select_board.py + @$(PYTHON) ../scripts/select_board.py setup: $(SHELL) ../scripts/setup_arduino_cli.sh -- 2.47.3