我正在尝试对 stm32l-discovery 板进行编程,并遇到了在我尝试构建项目时不断出现的这个错误。
error: #29: expected an expression
for (int i = 0; i <999; i++){
我正在使用 Keil uVision 4。
资源:
while (1) {
////fade up
int i = 0;
for (int i = 0; i <999; i++) {
TIM_SetCompare2(TIM2,i);
////Pulse width is set with this function
delay(100);
//// the '2' relates to the channel in use
}
}
有谁知道这是什么意思?