diff options
| author | Your Name <you@example.com> | 2026-05-18 20:41:16 +0530 |
|---|---|---|
| committer | Your Name <you@example.com> | 2026-05-18 20:41:16 +0530 |
| commit | 7344b1b50bcb3e1fc24b164cd601dd7cbce582c1 (patch) | |
| tree | ed639e1748d9b461fc77e9587c5de6142c243781 /Makefile | |
| parent | 06de1143037399bb96308df0ea4290faa79de9dc (diff) | |
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)
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
| @@ -7,8 +7,8 @@ export | |||
| 7 | IDF_PATH ?= $(HOME)/esp/esp-idf | 7 | IDF_PATH ?= $(HOME)/esp/esp-idf |
| 8 | PROJECT_DIR := $(shell pwd) | 8 | PROJECT_DIR := $(shell pwd) |
| 9 | BUILD_DIR := $(PROJECT_DIR)/build | 9 | BUILD_DIR := $(PROJECT_DIR)/build |
| 10 | PORT_A ?= /dev/ttyACM1 | 10 | PORT_A ?= /dev/ttyACM0 |
| 11 | PORT_B ?= /dev/ttyACM2 | 11 | PORT_B ?= /dev/ttyACM1 |
| 12 | PORT ?= $(PORT_A) | 12 | PORT ?= $(PORT_A) |
| 13 | BAUD ?= 460800 | 13 | BAUD ?= 460800 |
| 14 | TARGET ?= esp32s3 | 14 | TARGET ?= esp32s3 |