DSP Code übernommen, angefangen zu kommentieren

This commit is contained in:
Patrick Hangl
2026-01-07 16:36:49 +01:00
parent 51ebfe7758
commit 76ec091e34
5 changed files with 1105 additions and 0 deletions

22
.vscode/c_cpp_properties.json vendored Normal file
View File

@@ -0,0 +1,22 @@
{
"configurations": [
{
"name": "Win32",
"includePath": [
"${workspaceFolder}/**",
"C:\\Users\\phangl\\00_Repos\\04_Python_Simulation\\dsp_code\\signalProcessing\\include"
],
"defines": [
"_DEBUG",
"UNICODE",
"_UNICODE"
],
"windowsSdkVersion": "8.1",
"compilerPath": "C:/Strawberry/c/bin/gcc.exe",
"cStandard": "c17",
"cppStandard": "c++17",
"intelliSenseMode": "windows-msvc-x86"
}
],
"version": 4
}

3
.vscode/settings.json vendored Normal file
View File

@@ -0,0 +1,3 @@
{
"C_Cpp.default.compilerPath": "C:/Strawberry/c/bin/gcc.exe"
}