gpt4 book ai didi

c++ - PIC代码无法编译

转载 作者:行者123 更新时间:2023-11-30 20:06:31 26 4
gpt4 key购买 nike

我需要针对此代码的快速建议,它无法编译,而且我无法弄清楚它出了什么问题。我只是想打印 PORT C 中数组中的元素,这是我的输出端口。谢谢

#include <htc.h>
#define _XTAL_FREQ 500000

void main()
{
int x[8]={0b1110, 0b1010, 0b1000, 0b1001, 0b0001, 0b0101, 0b0111, 0b0110, 0b1110};
int i,PORTC;
TRISC = 0 ; // set PORTC as OUTPUT
PORTC = 0b0000;
for(;;){ // forever
for ( i = 0; i < 8; i++ ){
PORTC = n[ i ] = i + 1; /* set element at location i to i + 1 */
__delay_ms(500); }

}
}

最佳答案

当您显然指的是x[ i ]时,您引用了n[ i ]

关于c++ - PIC代码无法编译,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23390343/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com