trying to fiw devcontainer to works with 42 chips

This commit is contained in:
hugo LAMY
2025-03-06 02:00:56 +01:00
parent 8a28799aac
commit c650ff1157
3 changed files with 6 additions and 23 deletions

View File

@@ -3,6 +3,9 @@
"dockerFile": "Dockerfile", // Reference to your Dockerfile
"context": ".", // The context is the root of your project
"workspaceFolder": "/workspace", // Where VSCode will mount your current folder inside the container
"mounts": ["source=${localWorkspaceFolder},target=/workspace,type=bind"],
"mounts": [
"source=${localWorkspaceFolder},target=/workspace,type=bind",
"source=/dev/tty.usbserial-310,target=/dev/ttyUSB0,type=bind"
],
"postCreateCommand": "echo 'Devcontainer setup complete!'"
}