Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions Firmware/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
*.dnx
*.xcl
*.ps1
*.bat
/settings/*.wsdt
*.crun
/.vscode/c_cpp_properties.json
/.vscode/iar-vsc.json
*.cortex-debug.peripherals.state.json
*.cortex-debug.registers.state.json
12 changes: 12 additions & 0 deletions Firmware/.vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"recommendations": [
"pluyckx.iar-vsc",
"cschlosser.doxdocgen",
"marus25.cortex-debug",
"guillaumelegrain.vscode-icf-syntax",
"ban.spellright",
"ms-vsliveshare.vsliveshare",
"austin.code-gnu-global",
"ms-vscode.cpptools"
]
}
23 changes: 23 additions & 0 deletions Firmware/.vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"showDevDebugOutput": true,
"cwd": "${workspaceRoot}",
"executable": "./Projects/EWARM/cortex-m4/stm32f411/Application/ExeHuawei_LiteOS.out",
"name": "Debug STM32",
"request": "launch",
"type": "cortex-debug",
"servertype": "openocd",
"armToolchainPath": "C:/Program Files (x86)/GNU Tools ARM Embedded/8 2018-q4-major/bin/",//insert your path to https://developer.arm.com/tools-and-software/open-source-software/developer-tools/gnu-toolchain/gnu-rm
"device": "stlink",
"configFiles": [
"interface/stlink.cfg",
"target/stm32f4x.cfg"
]
}
]
}
13 changes: 13 additions & 0 deletions Firmware/.vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
{
"stm32-for-vscode.openocdPath": "c:\\Program Files (x86)\\OpenOCD\\bin\\openocd.exe",
"cortex-debug.openocdPath": "c:\\Program Files (x86)\\OpenOCD\\bin\\openocd.exe",
"spellright.language": [
"en"
],
"spellright.documentTypes": [
"markdown",
"latex",
"plaintext",
"c"
]
}
21 changes: 21 additions & 0 deletions Firmware/.vscode/tasks.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
{
"version": "2.0.0",
"tasks": [
{
"type": "iar",
"command": "build",
"project": "${command:iar-settings.project-file}",
"config": "${command:iar-settings.project-configuration}",
"builder": "${command:iar-settings.workbench}/common/bin/IarBuild.exe",
"label": "iar: Iar Build",
"problemMatcher": [
"$iar-cc",
"$iar-linker"
],
"group": {
"kind": "build",
"isDefault": true
}
}
]
}
38 changes: 38 additions & 0 deletions Firmware/SolderingStation.code-workspace
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
{
"folders": [
{
"path": "."
}
],
"settings": {
"stm32-for-vscode.openocdPath": "c:\\Program Files (x86)\\OpenOCD\\bin\\openocd.exe",
"cortex-debug.openocdPath": "c:\\Program Files (x86)\\OpenOCD\\bin\\openocd.exe",
"files.associations": {
"algorithm": "cpp",
"limits": "cpp",
"nbfi_hal.h": "c",
"tim.h": "c",
"wvt_dsp.h": "c",
"adc.h": "c",
"scheduler_hal.h": "c",
"wvt_calibandlin.h": "c",
"dma.h": "c",
"iwdg.h": "c",
"usart.h": "c",
"tsc.h": "c",
"cb.h": "c",
"meter.h": "c",
"radio.h": "c",
"water7.h": "c",
"wvt_leakandbreak.h": "c",
"wvt_ultrasound.h": "c",
"CN91C4S96.h": "c",
"main.h": "c",
"iutility": "c",
"xmemory": "c",
"xstddef": "c",
"xutility": "c",
"new": "c"
}
}
}