Hello,
I'm on LinuxMint 17.2, using arm-none-eabi-gcc toolchain on a TM4C123G board.
I have been trying, unsuccessfully, to write the EnableInterrupt, DisableInterrupt and WaitForInterrupt functions in order to do a periodic Systick interrupt subsequently. Eg :
void EnableInt(void)
{ __asm(" cpsie i\n");
}
(see full blinky.c code here)
I am trying not to use other libraries, for educational purposes.
Thanks. Jean