mbv: add async app, sorta works

This commit is contained in:
2025-06-24 23:04:13 -07:00
parent afba9e168f
commit 849cf7b7a1
16 changed files with 1073 additions and 2 deletions

View File

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