This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

Stellaris LM4F & Sourcery CodeBench GPIO Interrups Handlers

Hello. I'm trying to replace some CS3 interrupt handlers with mine. 

I'm already implement SysTick handler

extern "C" void __cs3_isr_systick() { ... }

and it's works well.

Then I try to implement GPIO Port M handler

extern "C" void __cs3_isr_GPIOM() { ... }

but then interrupt occurs default CS3 handler executed.

What I'm doing wrong?