From 85d24893fc1da678a6cea689ab30ac8e6990c08c Mon Sep 17 00:00:00 2001 From: hosu Date: Wed, 15 Apr 2026 10:32:13 +0900 Subject: [PATCH] =?UTF-8?q?[2026-04-15=2010:30=20AM]=20STATIC=20=EC=B5=9C?= =?UTF-8?q?=EC=8B=A0=ED=99=94=20=EB=B0=8F=20=EA=B8=B0=EB=8A=A5=20=EC=A0=90?= =?UTF-8?q?=EA=B2=80=20=EC=9D=B4=EC=83=81=20=EC=97=86=EC=9D=8C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .vscode/c_cpp_properties.json | 16 +++++++++++++--- main.h | 2 +- 2 files changed, 14 insertions(+), 4 deletions(-) diff --git a/.vscode/c_cpp_properties.json b/.vscode/c_cpp_properties.json index b1f27e8..a919736 100644 --- a/.vscode/c_cpp_properties.json +++ b/.vscode/c_cpp_properties.json @@ -1,16 +1,26 @@ { "configurations": [ { - "name": "Win32", + "name": "TI C2000 DSP2833x", "includePath": [ - "${workspaceFolder}/**" + "${workspaceFolder}/", + "C:/ti/c2000/C2000Ware_4_03_00_00/device_support/f2833x/common/include", + "C:/ti/c2000/C2000Ware_4_03_00_00/device_support/f2833x/headers/include", + "C:/ti/ccs1281/ccs/tools/compiler/ti-cgt-c2000_22.6.1.LTS/include" ], "defines": [ "_DEBUG", "UNICODE", "_UNICODE" + ], + "compilerPath": "C:/ti/ccs1281/ccs/tools/compiler/ti-cgt-c2000_22.6.1.LTS/bin/cl2000.exe", + "cStandard": "c99", + "cppStandard": "c++14", + "intelliSenseMode": "gcc-x86", + "forcedInclude": [ + "C:/ti/c2000/C2000Ware_4_03_00_00/device_support/f2833x/common/include/DSP28x_Project.h" ] } ], "version": 4 -} \ No newline at end of file +} diff --git a/main.h b/main.h index f7be9c6..a75cbac 100644 --- a/main.h +++ b/main.h @@ -1,7 +1,7 @@ #ifndef SOURCE_MAIN_H_ #define SOURCE_MAIN_H_ -#include +#include #include "DSP28x_Project.h" #include "DSP2833x_Device.h" #include "State.h"