#include < cr_section_macros.h >
// TODO: insert other include files here
// TODO: insert other definitions and declarations here
int main(void) {
// TODO: insert code here
// Force the counter to be placed into memory
volatile static int i = 0 ;
// Enter an infinite loop, just incrementing a counter
while(1) {
i++ ;
}
return 0 ;
} |
// TODO: insert other include files here #include < gpio_15xx.h > |