Created
July 6, 2022 00:40
-
-
Save ztnel/9c3f8179f3f0c06ad49d96df6d27be81 to your computer and use it in GitHub Desktop.
TI C2000 VSCode (Intellisense) Configuration
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"env": { | |
"chipset": "f2838x", | |
"CCS": "ccs1120", | |
"TiBase": "/Applications/ti", | |
"C2000Ware": "c2000/C2000Ware_3_04_00_00", | |
"CGT": "ti-cgt-c2000_20.2.6.LTS", | |
"XDCTools": "xdctools_3_62_01_16_core", | |
"TIBIOS": "bios_6_83_00_18" | |
}, | |
"configurations": [ | |
{ | |
"name": "TI", | |
"includePath": [ | |
"${workspaceFolder}", | |
"${workspaceFolder}/TI_cycler_src/include", | |
"${TiBase}/${TIBIOS}/packages/ti/posix/ccs", | |
"${TiBase}/${TIBIOS}/packages", | |
"${TiBase}/${CCS}/${XDCTools}/packages", | |
"${TiBase}/${CGT}/include", | |
"${TiBase}/${C2000Ware}/driverlib/${chipset}/driverlib", | |
"${TiBase}/${C2000Ware}/libraries/control/DCL/c28/include", | |
"${TiBase}/${C2000Ware}/libraries/calibration/hrpwm/f2838x/include", | |
"${TiBase}/${C2000Ware}/device_support/${chipset}/common/include", | |
"${TiBase}/${C2000Ware}/device_support/${chipset}/headers/include", | |
"${TiBase}/${C2000Ware}/device_support/${chipset}/common/source" | |
], | |
"browse": { | |
"path": [ | |
"${workspaceFolder}/**" | |
] | |
}, | |
"defines": [ | |
"__CHAR16_TYPE__=unsigned short", | |
"__CHAR32_TYPE__=unsigned long", | |
"__CHAR_BIT__=16", | |
"__COMPILER_VERSION__=20002006", | |
"__edg_front_end__=1", | |
"__EDG_PTRDIFF_TYPE__=long", | |
"__EDG_SIZE_TYPE__=unsigned long", | |
"__EDG_VERSION__=413", | |
"__ELF__=1", | |
"__INT_MAX__=32767", | |
"__LARGE_MODEL__=1", | |
"LARGE_MODEL=1", | |
"__little_endian__=1", | |
"__LITTLE_ENDIAN__=1", | |
"__LONG_LONG_MAX__=9223372036854775807", | |
"__LONG_MAX__=2147483647", | |
"__PRAGMA_REDEFINE_EXTNAME=1", | |
"__PTRDIFF_T_TYPE__=long", | |
"__SCHAR_MAX__=32767", | |
"__SHRT_MAX__=32767", | |
"__signed_chars__=1", | |
"__SIZE_T_TYPE__=unsigned long", | |
"__SIZEOF_DOUBLE__=4", | |
"__SIZEOF_FLOAT__=2", | |
"__SIZEOF_INT__=1", | |
"__SIZEOF_LONG__=2", | |
"__SIZEOF_LONG_DOUBLE__=4", | |
"__SIZEOF_LONG_LONG__=4", | |
"__SIZEOF_PTRDIFF_T__=2", | |
"__SIZEOF_SHORT__=1", | |
"__SIZEOF_SIZE_T__=2", | |
"__SIZEOF_WCHAR_T__=2", | |
"__SIZEOF_WINT_T__=2", | |
"__STDC__=1", | |
"__STDC_HOSTED__=1", | |
"__STDC_NO_THREADS__=1", | |
"__STDC_VERSION__=199409L", | |
"__TI_C99_COMPLEX_ENABLED__=1", | |
"__TI_COMPILER_VERSION__=20002006", | |
"__TI_COMPILER_VERSION_QUAL__=QUAL_LETTER", | |
"__TI_COMPILER_VERSION_QUAL_ID__=22020", | |
"__TI_EABI__=1", | |
"__TI_GNU_ATTRIBUTE_SUPPORT__=1", | |
"__TI_STRICT_ANSI_MODE__=0", | |
"__TI_STRICT_FP_MODE__=0", | |
"__TI_WCHAR_T_BITS__=32", | |
"__TIME__=1", | |
"__TMS320C2000__=1", | |
"_TMS320C2000=1", | |
"__TMS320C28X__=1", | |
"_TMS320C28X=1", | |
"__TMS320C28XX__=1", | |
"__TMS320C28XX_FPU32__=1", | |
"__TMS320C28XX_IDIV__=1", | |
"__TMS320C28XX_TMU0__=1", | |
"__TMS320C28XX_TMU__=1", | |
"_TMS320C28XX=1", | |
"__VERSION__='EDG gcc 4.8 mode'", | |
"__WCHAR_T_TYPE__=unsigned long", | |
"_OPTIMIZE_FOR_SPACE=1", | |
"xdc_target_types__=ti/targets/elf/std.h", | |
"xdc_target_name__=C28_float", | |
"DEBUG", | |
"CPU1", | |
"_FLASH", | |
"DRV8353_SPI", | |
"TIV5", | |
"_STLP_COMPILER" | |
], | |
"compilerPath": "", | |
"cStandard": "c99", | |
"intelliSenseMode": "gcc-x86", | |
"configurationProvider": "ms-vscode.makefile-tools" | |
} | |
], | |
"version": 4 | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment