AVR Studio - program sector function
카테고리 없음 / 2017. 7. 11. 23:30
#define SECTION(a) __attribute__ ((section(a))) SECTION(".section1")int f1(void) { int a=0; a++; return a; } SECTION(".section1")int f2(void) { int a=0; a++; return a; } SECTION(".section2")int f3(void) { int a=0; a++; return a; } 지정된 위치에 함수(코드)를 위치시킬 수 있다. 응용 : 부트로더 작성