2012-10-26 61 views

回答

2

是的,Arduino網站上有一個例子。但我想讓你知道一個compiler bug in GCC,以及以下解決方法:

/** 
* Alternative to PROGMEM storage class 
* 
* Same effect as PROGMEM storage class, but avoiding erroneous warning by 
* GCC. 
* 
* \see http://gcc.gnu.org/bugzilla/show_bug.cgi?id=34734 
*/ 
#define PROGMEM_ __attribute__((section(".progmem.data")))