retro-go/retro-go.code-workspace
Alex Duchesne 8c6b56b88c Updated README
Changed 15Ω to 33Ω in the sound quality section.
2022-02-27 12:12:20 -05:00

87 lines
1.6 KiB
Plaintext

{
"folders": [
{
"path": "components"
},
{
"path": "gnuboy-go"
},
{
"path": "handy-go"
},
{
"path": "launcher"
},
{
"path": "nofrendo-go"
},
{
"path": "pce-go"
},
{
"path": "prboom-go"
},
{
"path": "smsplusgx-go"
},
{
"path": "snes9x-go"
},
{
"path": ".",
"name": "root"
}
],
"settings": {
"esp.sdk-path": "C:/Users/alex/Apps/esp-idf/frameworks/esp-idf-v4.1.2",
"esp.tools-path": "C:/Users/alex/Apps/esp-idf/tools/tools/xtensa-esp32-elf/esp-2020r3-8.4.0/xtensa-esp32-elf",
"git.confirmForcePush": false,
"C_Cpp.default.defines": [
"PROJECT_VER",
"INLINE=",
"uint=unsigned int",
"CONFIG_FREERTOS_HZ=100",
"CONFIG_TCPIP_LWIP=1"
],
"C_Cpp.default.includePath": [
"${workspaceFolder}/components/**",
"${workspaceFolder}/../components/**",
"${config:esp.sdk-path}/components/**",
"${config:esp.tools-path}/include/**"
],
"C_Cpp.default.forcedInclude": [
"${workspaceFolder}/build/config/sdkconfig.h",
"${workspaceFolder}/build/sdkconfig.h",
],
"C_Cpp.default.compilerPath": "${config:esp.tools-path}/bin/xtensa-esp32-elf-g++.exe",
"C_Cpp.default.cStandard": "c11",
"C_Cpp.default.cppStandard": "c++11",
"C_Cpp.default.intelliSenseMode": "gcc-x86",
"cSpell.words": [
"espressif",
"gnuboy",
"IRAM",
"mkfw",
"MOSI",
"MRGC",
"newboy",
"newfrendo",
"nofrendo",
"prboom",
"SDSPI",
"smsplusgx",
"TCPIP",
"WROVER"
],
"files.trimTrailingWhitespace": true,
"files.exclude": {
"**/build": true,
"root": true
},
"files.watcherExclude": {
"**/build/**": true,
"**/.git/**": true
}
}
}