AVR
chenbang110
学习是最快乐的事
展开
-
ICCAVR编译报错 !E <library>(197): area 'bss' not large enough
!E (197): area 'bss' not large enoughwant size 384lo 910 hi 1119 size 210错误分析:bss段是编译器存放全局数组和局部静态数组的地方。如果我们在编写程序时声明了过大的数组、或局部静态数组,就有可能看到这个提示。 解决方法:如果某些数组是常量,我们就可以增加const关键字,将其放到空间相对宽裕的FLAS转载 2013-05-23 10:58:21 · 3631 阅读 · 0 评论 -
ATmega48/88/168 串口 proteus 仿真
ATmega48/88/168串口程序void UART_Baud_9600_Init(void){ DDRD |= 0b00000010;PORTD |= 0b0000010;UCSR0B = 0x00;UCSR0A = 0x00;UBRR0H = 0;UBRR0L = 51; //9600 UCSR0B = (1UCSR0C = (原创 2013-05-10 08:38:32 · 3851 阅读 · 0 评论 -
win8 AVR usbasp 驱动 安装
Are you having problems installing usbasp drivers on windows 8 ? This walkthrough will guide you to installing those drivers :)Actually the main problem is that microsoft doesn't allow you to inst转载 2013-06-01 10:02:57 · 8211 阅读 · 1 评论