2012-10-26 3 views

답변

5

정확하게이 on the Arduino website을 수행하는 방법에 대한 예제가있다. ("문자열 배열"을 참조하십시오.)

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"))) 
관련 문제