{"version":"2.0.0","tasks":[{"label":"clean","type":"shell","command":"rm -rf ${workspaceFolder}/build","group":"build","problemMatcher":[],"detail":"Clean the build directory"},{"label":"configure","type":"shell","command":"cmake","args":["-S","${workspaceFolder}","-B","${workspaceFolder}/build"],"problemMatcher":[],"detail":"Configure the project with CMake"},{"label":"build","type":"shell","command":"cmake","args":["--build","${workspaceFolder}/build"],"group":{"kind":"build","isDefault":true},"problemMatcher":["$gcc"],"detail":"Build the project using CMake"}]}
launch.json
{"version":"0.2.0","configurations":[{"name":"Debug (gdb)","type":"cppdbg","request":"launch","program":"${workspaceFolder}/build/MyProject",// 这里填入你的可执行文件路径"args":[],"stopAtEntry":false,"cwd":"${workspaceFolder}","environment":[],"externalConsole":false,"MIMode":"gdb","setupCommands":[{"description":"Enable pretty-printing for gdb","text":"-enable-pretty-printing","ignoreFailures":true}],"miDebuggerPath":"/usr/bin/gdb",// 如果你的系统使用的是 gdb"preLaunchTask":"clean",// 在调试前清理构建目录"postDebugTask":"build",// 在调试后执行构建任务"serverLaunchTimeout":10000,"sourceFileMap":{"/src":"${workspaceFolder}/src"}}]}
settings.json
files.associations:用于指定文件类型与语言模式的关联。例如,如果你的头文件是 .h 文件但内容是 C 语言的把 list_node.h、generalized_list.h 和 binary_tree.h 关联到 C 语言
2021 数学分析 求极限 lim n → ∞ 1 n ( n + 1 ) ( n + 2 ) ⋯ ( n + n ) n \lim_{n \to \infty} \frac{1}{n} \sqrt [n]{(n+1)(n+2) \cdots (n+n)} n→∞limn1n(n+1)(n+2)⋯(n+n) lim n → ∞ 1 n ( n + 1 ) ( n + 2 ) ⋯ ( n + n ) n = lim n → ∞ ( n + …
FPGA存在的意义:为什么adc连续采样需要fpga来做,而不会直接用iic来实现 原因ADS111x连续采样实现连续采样功能说明iic读取adc的数据速率 VS adc连续采样的速率adc连续采样的速率iic读取adc的数据速率结论分析 FPGA读取adc数据问题一:读取adc数…