Build started: Project: 寻径小车 Build target 'Target 1' compiling 寻径小车.c... 寻径小车.c(14): error C202: 'ADC_START': undefined identifier 寻径小车.c(15): error C202: 'ADC_FLAG': undefined identifier 寻径小车.c(16): error C202: 'ADC_R': undefined identifier 寻径小车.c(16): error C141: syntax error near 'ESL', expected ';' 寻径小车.c(17): error C202: 'ADC_FLAG': undefined identifier 寻径小车.c(25): error C202: 'PWMADCH': undefined identifier 寻径小车.c(26): error C202: 'PWMADCL': undefined identifier 寻径小车.c(36): error C202: 'uint16_t': undefined identifier 寻径小车.c(36): error C141: syntax error near 'AD_Result', expected ';' 寻径小车.c(37): error C202: 'uint16_t': undefined identifier 寻径小车.c(37): error C141: syntax error near 'AD_Result_mV', expected ';' 寻径小车.c(41): error C202: 'AD_Result': undefined identifier 寻径小车.c(42): error C202: 'AD_Result_mV': undefined identifier 寻径小车.c(42): error C141: syntax error near 'AD_Result', expected ',' 寻径小车.c(42): error C141: syntax error near ')', expected ';' Target not created. Build Time Elapsed: 00:00:01
时间: 2024-04-01 15:37:17 浏览: 201
vs6.0安装及运行 和解决 Compiling... error spawning cl.exe 的问题
这些错误提示表明您的代码中使用了一些未定义的标识符,或者存在语法错误和拼写错误。请检查您的代码,确保所有使用的标识符都已正确定义,并且没有语法错误和拼写错误。特别地,您需要检查ADC_START、ADC_FLAG、ADC_R、PWMADCH、PWMADCL、uint16_t、AD_Result和AD_Result_mV这些标识符是否正确定义。如果您找到了错误,请尝试修复它们并重新编译您的项目。
阅读全文