From 7344b1b50bcb3e1fc24b164cd601dd7cbce582c1 Mon Sep 17 00:00:00 2001 From: Your Name Date: Mon, 18 May 2026 20:41:16 +0530 Subject: feat: WiFi country code DE + retry delay + updated docs - Add esp_wifi_set_country_code('DE') before WiFi start for EU regulatory compliance - Add 2s delay between WiFi auth retries to avoid AP rate limiting - Update AGENTS.md with CVM modules, board C, per-board locks, WiFi notes - Update CHECKLIST.md with Phase 7b completion, 7c integration progress - Update PLAN.md with test cases 53-73, WiFi country code findings - Update Makefile port defaults (A=ACM0, B=ACM1) - Board B connects to WiFi successfully with these fixes - Board A has hardware WiFi issue (auth fails on all APs) --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 044ad6b..10b7359 100644 --- a/Makefile +++ b/Makefile @@ -7,8 +7,8 @@ export IDF_PATH ?= $(HOME)/esp/esp-idf PROJECT_DIR := $(shell pwd) BUILD_DIR := $(PROJECT_DIR)/build -PORT_A ?= /dev/ttyACM1 -PORT_B ?= /dev/ttyACM2 +PORT_A ?= /dev/ttyACM0 +PORT_B ?= /dev/ttyACM1 PORT ?= $(PORT_A) BAUD ?= 460800 TARGET ?= esp32s3 -- cgit v1.2.3