我正在编写一个自定义库,它在 Arduino Uno 上正常工作。然而,我现在已经掌握了 Arduino Due,我需要定义一些特定于板的引脚常量。
我知道对于大多数板,您可以通过#ifdef
使用\\arduino-1.5.2\hardware\tools\avr\avr\include\avr\io.h
. 例如:
#if defined (__AVR_ATmega128__)
//do something specific
#endif
有人知道哪个是用于到期的正确常量吗?