Build started: Project: 寻径小车 Build target 'Target 1' compiling 寻径小车.c... 寻径小车.c(15): error C202: 'ADC_FLAG': undefined identifier 寻径小车.c(18): error C202: 'ADC_FLAG': undefined identifier 寻径小车.c(44): error C138: 'pwm_0': interrupt() may not receive or return value(s) 寻径小车.c(51): error C138: 'pwm_1': interrupt() may not receive or return value(s) 寻径小车.c(65): error C202: 'AD_Result_mV0': undefined identifier 寻径小车.c(67): error C202: 'AD_Result_mV0': undefined identifier 寻径小车.c(68): error C141: syntax error near '=', expected ';' 寻径小车.c(69): error C141: syntax error near '}', expected ';' 寻径小车.c(81): error C202: 'AD_Result_mV0': undefined identifier 寻径小车.c(83): error C202: 'AD_Result_mV1': undefined identifier 寻径小车.c(84): error C141: syntax error near '=', expected ';' 寻径小车.c(85): error C141: syntax error near '}', expected ';' Target not created.
时间: 2024-03-31 22:36:47 浏览: 115
vs6.0安装及运行 和解决 Compiling... error spawning cl.exe 的问题
这是一个编译错误的提示信息,可能是程序中使用了未定义的变量或函数。其中有些错误是语法错误,比如缺少分号等等,需要检查代码中的拼写错误和语法错误。另外,还有一些错误是由于中断函数的定义不符合规范导致的,需要检查中断函数的定义是否正确。最后,也有可能是头文件没有被正确地包含,需要检查头文件的路径是否正确。
阅读全文