first commit which could ouput camera video stream

This commit is contained in:
SikongJueluo
2024-06-09 18:24:28 +08:00
commit cb3a6fcd31
10 changed files with 605 additions and 0 deletions

3
.devcontainer/Dockerfile Normal file
View File

@@ -0,0 +1,3 @@
FROM localhost/arm-himix200-linux
RUN apt install unzip

View File

@@ -0,0 +1,32 @@
{
"name": "Hi3516_DEV",
// Or use a Dockerfile or Docker Compose file. More info: https://containers.dev/guide/dockerfile
// "image": "localhost/arm-himix200-linux",
"build" : {
"dockerfile": "Dockerfile"
},
// Features to add to the dev container. More info: https://containers.dev/features.
// "features": {},
// Use 'forwardPorts' to make a list of ports inside the container available locally.
// "appPort": [ "7897:7897" ],
// Use 'postCreateCommand' to run commands after the container is created.
// "postCreateCommand": "uname -a",
// Configure tool-specific properties.
"customizations": {
"vscode": {
"setting": {},
"extensions": [
"ms-vscode.cpptools-extension-pack",
"tboox.xmake-vscode",
"satiromarra.code-sftp"
]
}
}
// Uncomment to connect as root instead. More info: https://aka.ms/dev-containers-non-root.
// "remoteUser": "root"
}