我正试着从arduino转换到avr。我得到了SREG未声明的错误。你知道SREG是什么吗?
SREG
发布于 2015-07-06 19:17:03
SREG是Status Register.它是一个AVR头中的#defined,所以您可能缺少了一个#include (可能是avr/io.h或avr/common.h)。
#define
#include
avr/io.h
avr/common.h
https://stackoverflow.com/questions/31253732
相似问题