Initial Comit

This commit is contained in:
2025-08-10 11:35:20 -04:00
commit e2b653e51f
34 changed files with 3741 additions and 0 deletions

26
common/.vscode/c_cpp_properties.json vendored Normal file
View File

@@ -0,0 +1,26 @@
{
"configurations": [
{
"name": "Linux",
"includePath": [
"${workspaceFolder}/**",
"/home/pi/Boneyard"
],
"defines": [],
"cStandard": "c17",
"cppStandard": "gnu++17",
"intelliSenseMode": "linux-gcc-arm64"
},
{
"name": "ARM64",
"includePath": [
"${workspaceFolder}/**"
],
"defines": [],
"cStandard": "c17",
"cppStandard": "gnu++17",
"intelliSenseMode": "linux-gcc-arm64"
}
],
"version": 4
}