mbv: add uart echo app

This commit is contained in:
2025-06-23 08:23:59 -07:00
parent d91ddeea22
commit 73edb77577
3 changed files with 92 additions and 0 deletions

View File

@@ -14,6 +14,10 @@ wozmon: ## Build the wozmon app in docker
timer: ## Build the timer app in docker
docker build -o . --target export --build-arg TARGET=timer.bin .
.PHONY: uart
uart: ## Build the uart app in docker
docker build -o . --target export --build-arg TARGET=uart.bin .
.PHONY: dev-image
dev-image:
docker build -t mbv-dev --target dev .