You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
448 lines
28 KiB
C
448 lines
28 KiB
C
/* File: startup_TM4C123GH6PM.c for GNU-ARM
|
|
* Purpose: startup file for TM4C123GH6PM Cortex-M4 device.
|
|
* Should be used with GCC 'GNU Tools ARM Embedded'
|
|
* Version: CMSIS 5.0.1
|
|
* Date: 2017-09-13
|
|
*
|
|
* Modified by Quantum Leaps:
|
|
* - Added relocating of the Vector Table to free up the 256B region at 0x0
|
|
* for NULL-pointer protection by the MPU.
|
|
* - Modified all exception handlers to branch to assert_failed()
|
|
* instead of locking up the CPU inside an endless loop.
|
|
*
|
|
* Created from the CMSIS template for the specified device
|
|
* Quantum Leaps, www.state-machine.com
|
|
*
|
|
* NOTE:
|
|
* The function assert_failed defined at the end of this file defines
|
|
* the error/assertion handling policy for the application and might
|
|
* need to be customized for each project. This function is defined in
|
|
* assembly to re-set the stack pointer, in case it is corrupted by the
|
|
* time assert_failed is called.
|
|
*/
|
|
|
|
/* start and end of stack defined in the linker script ---------------------*/
|
|
/*extern int __stack_start__;*/
|
|
extern int __stack_end__;
|
|
|
|
/* Weak prototypes for error handlers --------------------------------------*/
|
|
/**
|
|
* \note
|
|
* The function assert_failed defined at the end of this file defines
|
|
* the error/assertion handling policy for the application and might
|
|
* need to be customized for each project. This function is defined in
|
|
* assembly to avoid accessing the stack, which might be corrupted by
|
|
* the time assert_failed is called.
|
|
*/
|
|
__attribute__ ((naked, noreturn))
|
|
void assert_failed(char const *module, int loc);
|
|
|
|
/* Function prototypes -----------------------------------------------------*/
|
|
void Default_Handler(void); /* Default empty handler */
|
|
void Reset_Handler(void); /* Reset Handler */
|
|
void SystemInit(void); /* CMSIS system initialization */
|
|
|
|
/*----------------------------------------------------------------------------
|
|
* weak aliases for each Exception handler to the Default_Handler.
|
|
* Any function with the same name will override these definitions.
|
|
*/
|
|
/* Cortex-M Processor fault exceptions... */
|
|
void NMI_Handler (void) __attribute__ ((weak));
|
|
void HardFault_Handler (void) __attribute__ ((weak));
|
|
void MemManage_Handler (void) __attribute__ ((weak));
|
|
void BusFault_Handler (void) __attribute__ ((weak));
|
|
void UsageFault_Handler (void) __attribute__ ((weak));
|
|
|
|
/* Cortex-M Processor non-fault exceptions... */
|
|
void SVC_Handler (void) __attribute__ ((weak, alias("Default_Handler")));
|
|
void DebugMon_Handler (void) __attribute__ ((weak, alias("Default_Handler")));
|
|
void PendSV_Handler (void) __attribute__ ((weak, alias("Default_Handler")));
|
|
void SysTick_Handler (void) __attribute__ ((weak, alias("Default_Handler")));
|
|
|
|
/* external interrupts... */
|
|
void GPIOPortA_IRQHandler (void) __attribute__ ((weak, alias("Default_Handler")));
|
|
void GPIOPortB_IRQHandler (void) __attribute__ ((weak, alias("Default_Handler")));
|
|
void GPIOPortC_IRQHandler (void) __attribute__ ((weak, alias("Default_Handler")));
|
|
void GPIOPortD_IRQHandler (void) __attribute__ ((weak, alias("Default_Handler")));
|
|
void GPIOPortE_IRQHandler (void) __attribute__ ((weak, alias("Default_Handler")));
|
|
void UART0_IRQHandler (void) __attribute__ ((weak, alias("Default_Handler")));
|
|
void UART1_IRQHandler (void) __attribute__ ((weak, alias("Default_Handler")));
|
|
void SSI0_IRQHandler (void) __attribute__ ((weak, alias("Default_Handler")));
|
|
void I2C0_IRQHandler (void) __attribute__ ((weak, alias("Default_Handler")));
|
|
void PWMFault_IRQHandler (void) __attribute__ ((weak, alias("Default_Handler")));
|
|
void PWMGen0_IRQHandler (void) __attribute__ ((weak, alias("Default_Handler")));
|
|
void PWMGen1_IRQHandler (void) __attribute__ ((weak, alias("Default_Handler")));
|
|
void PWMGen2_IRQHandler (void) __attribute__ ((weak, alias("Default_Handler")));
|
|
void QEI0_IRQHandler (void) __attribute__ ((weak, alias("Default_Handler")));
|
|
void ADCSeq0_IRQHandler (void) __attribute__ ((weak, alias("Default_Handler")));
|
|
void ADCSeq1_IRQHandler (void) __attribute__ ((weak, alias("Default_Handler")));
|
|
void ADCSeq2_IRQHandler (void) __attribute__ ((weak, alias("Default_Handler")));
|
|
void ADCSeq3_IRQHandler (void) __attribute__ ((weak, alias("Default_Handler")));
|
|
void Watchdog_IRQHandler (void) __attribute__ ((weak, alias("Default_Handler")));
|
|
void Timer0A_IRQHandler (void) __attribute__ ((weak, alias("Default_Handler")));
|
|
void Timer0B_IRQHandler (void) __attribute__ ((weak, alias("Default_Handler")));
|
|
void Timer1A_IRQHandler (void) __attribute__ ((weak, alias("Default_Handler")));
|
|
void Timer1B_IRQHandler (void) __attribute__ ((weak, alias("Default_Handler")));
|
|
void Timer2A_IRQHandler (void) __attribute__ ((weak, alias("Default_Handler")));
|
|
void Timer2B_IRQHandler (void) __attribute__ ((weak, alias("Default_Handler")));
|
|
void Comp0_IRQHandler (void) __attribute__ ((weak, alias("Default_Handler")));
|
|
void Comp1_IRQHandler (void) __attribute__ ((weak, alias("Default_Handler")));
|
|
void Comp2_IRQHandler (void) __attribute__ ((weak, alias("Default_Handler")));
|
|
void SysCtrl_IRQHandler (void) __attribute__ ((weak, alias("Default_Handler")));
|
|
void FlashCtrl_IRQHandler (void) __attribute__ ((weak, alias("Default_Handler")));
|
|
void GPIOPortF_IRQHandler (void) __attribute__ ((weak, alias("Default_Handler")));
|
|
void GPIOPortG_IRQHandler (void) __attribute__ ((weak, alias("Default_Handler")));
|
|
void GPIOPortH_IRQHandler (void) __attribute__ ((weak, alias("Default_Handler")));
|
|
void UART2_IRQHandler (void) __attribute__ ((weak, alias("Default_Handler")));
|
|
void SSI1_IRQHandler (void) __attribute__ ((weak, alias("Default_Handler")));
|
|
void Timer3A_IRQHandler (void) __attribute__ ((weak, alias("Default_Handler")));
|
|
void Timer3B_IRQHandler (void) __attribute__ ((weak, alias("Default_Handler")));
|
|
void I2C1_IRQHandler (void) __attribute__ ((weak, alias("Default_Handler")));
|
|
void QEI1_IRQHandler (void) __attribute__ ((weak, alias("Default_Handler")));
|
|
void CAN0_IRQHandler (void) __attribute__ ((weak, alias("Default_Handler")));
|
|
void CAN1_IRQHandler (void) __attribute__ ((weak, alias("Default_Handler")));
|
|
void CAN2_IRQHandler (void) __attribute__ ((weak, alias("Default_Handler")));
|
|
void Hibernate_IRQHandler (void) __attribute__ ((weak, alias("Default_Handler")));
|
|
void USB0_IRQHandler (void) __attribute__ ((weak, alias("Default_Handler")));
|
|
void PWMGen3_IRQHandler (void) __attribute__ ((weak, alias("Default_Handler")));
|
|
void uDMAST_IRQHandler (void) __attribute__ ((weak, alias("Default_Handler")));
|
|
void uDMAError_IRQHandler (void) __attribute__ ((weak, alias("Default_Handler")));
|
|
void ADC1Seq0_IRQHandler (void) __attribute__ ((weak, alias("Default_Handler")));
|
|
void ADC1Seq1_IRQHandler (void) __attribute__ ((weak, alias("Default_Handler")));
|
|
void ADC1Seq2_IRQHandler (void) __attribute__ ((weak, alias("Default_Handler")));
|
|
void ADC1Seq3_IRQHandler (void) __attribute__ ((weak, alias("Default_Handler")));
|
|
void GPIOPortJ_IRQHandler (void) __attribute__ ((weak, alias("Default_Handler")));
|
|
void GPIOPortK_IRQHandler (void) __attribute__ ((weak, alias("Default_Handler")));
|
|
void GPIOPortL_IRQHandler (void) __attribute__ ((weak, alias("Default_Handler")));
|
|
void SSI2_IRQHandler (void) __attribute__ ((weak, alias("Default_Handler")));
|
|
void SSI3_IRQHandler (void) __attribute__ ((weak, alias("Default_Handler")));
|
|
void UART3_IRQHandler (void) __attribute__ ((weak, alias("Default_Handler")));
|
|
void UART4_IRQHandler (void) __attribute__ ((weak, alias("Default_Handler")));
|
|
void UART5_IRQHandler (void) __attribute__ ((weak, alias("Default_Handler")));
|
|
void UART6_IRQHandler (void) __attribute__ ((weak, alias("Default_Handler")));
|
|
void UART7_IRQHandler (void) __attribute__ ((weak, alias("Default_Handler")));
|
|
void I2C2_IRQHandler (void) __attribute__ ((weak, alias("Default_Handler")));
|
|
void I2C3_IRQHandler (void) __attribute__ ((weak, alias("Default_Handler")));
|
|
void Timer4A_IRQHandler (void) __attribute__ ((weak, alias("Default_Handler")));
|
|
void Timer4B_IRQHandler (void) __attribute__ ((weak, alias("Default_Handler")));
|
|
void Timer5A_IRQHandler (void) __attribute__ ((weak, alias("Default_Handler")));
|
|
void Timer5B_IRQHandler (void) __attribute__ ((weak, alias("Default_Handler")));
|
|
void WideTimer0A_IRQHandler(void) __attribute__ ((weak, alias("Default_Handler")));
|
|
void WideTimer0B_IRQHandler(void) __attribute__ ((weak, alias("Default_Handler")));
|
|
void WideTimer1A_IRQHandler(void) __attribute__ ((weak, alias("Default_Handler")));
|
|
void WideTimer1B_IRQHandler(void) __attribute__ ((weak, alias("Default_Handler")));
|
|
void WideTimer2A_IRQHandler(void) __attribute__ ((weak, alias("Default_Handler")));
|
|
void WideTimer2B_IRQHandler(void) __attribute__ ((weak, alias("Default_Handler")));
|
|
void WideTimer3A_IRQHandler(void) __attribute__ ((weak, alias("Default_Handler")));
|
|
void WideTimer3B_IRQHandler(void) __attribute__ ((weak, alias("Default_Handler")));
|
|
void WideTimer4A_IRQHandler(void) __attribute__ ((weak, alias("Default_Handler")));
|
|
void WideTimer4B_IRQHandler(void) __attribute__ ((weak, alias("Default_Handler")));
|
|
void WideTimer5A_IRQHandler(void) __attribute__ ((weak, alias("Default_Handler")));
|
|
void WideTimer5B_IRQHandler(void) __attribute__ ((weak, alias("Default_Handler")));
|
|
void FPU_IRQHandler (void) __attribute__ ((weak, alias("Default_Handler")));
|
|
void I2C4_IRQHandler (void) __attribute__ ((weak, alias("Default_Handler")));
|
|
void I2C5_IRQHandler (void) __attribute__ ((weak, alias("Default_Handler")));
|
|
void GPIOPortM_IRQHandler (void) __attribute__ ((weak, alias("Default_Handler")));
|
|
void GPIOPortN_IRQHandler (void) __attribute__ ((weak, alias("Default_Handler")));
|
|
void QEI2_IRQHandler (void) __attribute__ ((weak, alias("Default_Handler")));
|
|
void GPIOPortP0_IRQHandler (void) __attribute__ ((weak, alias("Default_Handler")));
|
|
void GPIOPortP1_IRQHandler (void) __attribute__ ((weak, alias("Default_Handler")));
|
|
void GPIOPortP2_IRQHandler (void) __attribute__ ((weak, alias("Default_Handler")));
|
|
void GPIOPortP3_IRQHandler (void) __attribute__ ((weak, alias("Default_Handler")));
|
|
void GPIOPortP4_IRQHandler (void) __attribute__ ((weak, alias("Default_Handler")));
|
|
void GPIOPortP5_IRQHandler (void) __attribute__ ((weak, alias("Default_Handler")));
|
|
void GPIOPortP6_IRQHandler (void) __attribute__ ((weak, alias("Default_Handler")));
|
|
void GPIOPortP7_IRQHandler (void) __attribute__ ((weak, alias("Default_Handler")));
|
|
void GPIOPortQ0_IRQHandler (void) __attribute__ ((weak, alias("Default_Handler")));
|
|
void GPIOPortQ1_IRQHandler (void) __attribute__ ((weak, alias("Default_Handler")));
|
|
void GPIOPortQ2_IRQHandler (void) __attribute__ ((weak, alias("Default_Handler")));
|
|
void GPIOPortQ3_IRQHandler (void) __attribute__ ((weak, alias("Default_Handler")));
|
|
void GPIOPortQ4_IRQHandler (void) __attribute__ ((weak, alias("Default_Handler")));
|
|
void GPIOPortQ5_IRQHandler (void) __attribute__ ((weak, alias("Default_Handler")));
|
|
void GPIOPortQ6_IRQHandler (void) __attribute__ ((weak, alias("Default_Handler")));
|
|
void GPIOPortQ7_IRQHandler (void) __attribute__ ((weak, alias("Default_Handler")));
|
|
void GPIOPortR_IRQHandler (void) __attribute__ ((weak, alias("Default_Handler")));
|
|
void GPIOPortS_IRQHandler (void) __attribute__ ((weak, alias("Default_Handler")));
|
|
void PWM1Gen0_IRQHandler (void) __attribute__ ((weak, alias("Default_Handler")));
|
|
void PWM1Gen1_IRQHandler (void) __attribute__ ((weak, alias("Default_Handler")));
|
|
void PWM1Gen2_IRQHandler (void) __attribute__ ((weak, alias("Default_Handler")));
|
|
void PWM1Gen3_IRQHandler (void) __attribute__ ((weak, alias("Default_Handler")));
|
|
void PWM1Fault_IRQHandler (void) __attribute__ ((weak, alias("Default_Handler")));
|
|
|
|
/*..........................................................................*/
|
|
__attribute__ ((section(".isr_vector")))
|
|
int const g_pfnVectors[] = {
|
|
/* Initial Vector Table before relocation */
|
|
(int)&__stack_end__, /* Top of Stack */
|
|
(int)&Reset_Handler, /* Reset Handler */
|
|
(int)&NMI_Handler, /* NMI Handler */
|
|
(int)&HardFault_Handler, /* Hard Fault Handler */
|
|
(int)&MemManage_Handler, /* The MPU fault handler */
|
|
(int)&BusFault_Handler, /* The bus fault handler */
|
|
(int)&UsageFault_Handler, /* The usage fault handler */
|
|
(int)&Default_Handler, /* Reserved */
|
|
(int)&Default_Handler, /* Reserved */
|
|
(int)&Default_Handler, /* Reserved */
|
|
(int)&Default_Handler, /* Reserved */
|
|
(int)&SVC_Handler, /* SVCall handler */
|
|
(int)&DebugMon_Handler, /* Debug monitor handler */
|
|
(int)&Default_Handler, /* Reserved */
|
|
(int)&PendSV_Handler, /* The PendSV handler */
|
|
(int)&SysTick_Handler, /* The SysTick handler */
|
|
/* pad the initial VT to the total size of 256B */
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
|
|
/* Relocated Vector Table beyond the 256B region around address 0.
|
|
* That region is used for NULL-pointer protection by the MPU.
|
|
*/
|
|
(int)&__stack_end__, /* Top of Stack */
|
|
(int)&Reset_Handler, /* Reset Handler */
|
|
(int)&NMI_Handler, /* NMI Handler */
|
|
(int)&HardFault_Handler, /* Hard Fault Handler */
|
|
(int)&MemManage_Handler, /* The MPU fault handler */
|
|
(int)&BusFault_Handler, /* The bus fault handler */
|
|
(int)&UsageFault_Handler, /* The usage fault handler */
|
|
(int)&Default_Handler, /* Reserved */
|
|
(int)&Default_Handler, /* Reserved */
|
|
(int)&Default_Handler, /* Reserved */
|
|
(int)&Default_Handler, /* Reserved */
|
|
(int)&SVC_Handler, /* SVCall handler */
|
|
(int)&DebugMon_Handler, /* Debug monitor handler */
|
|
(int)&Default_Handler, /* Reserved */
|
|
(int)&PendSV_Handler, /* The PendSV handler */
|
|
(int)&SysTick_Handler, /* The SysTick handler */
|
|
|
|
/*IRQ handlers... */
|
|
(int)&GPIOPortA_IRQHandler, /* GPIO Port A */
|
|
(int)&GPIOPortB_IRQHandler, /* GPIO Port B */
|
|
(int)&GPIOPortC_IRQHandler, /* GPIO Port C */
|
|
(int)&GPIOPortD_IRQHandler, /* GPIO Port D */
|
|
(int)&GPIOPortE_IRQHandler, /* GPIO Port E */
|
|
(int)&UART0_IRQHandler, /* UART0 Rx and Tx */
|
|
(int)&UART1_IRQHandler, /* UART1 Rx and Tx */
|
|
(int)&SSI0_IRQHandler, /* SSI0 Rx and Tx */
|
|
(int)&I2C0_IRQHandler, /* I2C0 Master and Slave */
|
|
(int)&PWMFault_IRQHandler, /* PWM Fault */
|
|
(int)&PWMGen0_IRQHandler, /* PWM Generator 0 */
|
|
(int)&PWMGen1_IRQHandler, /* PWM Generator 1 */
|
|
(int)&PWMGen2_IRQHandler, /* PWM Generator 2 */
|
|
(int)&QEI0_IRQHandler, /* Quadrature Encoder 0 */
|
|
(int)&ADCSeq0_IRQHandler, /* ADC Sequence 0 */
|
|
(int)&ADCSeq1_IRQHandler, /* ADC Sequence 1 */
|
|
(int)&ADCSeq2_IRQHandler, /* ADC Sequence 2 */
|
|
(int)&ADCSeq3_IRQHandler, /* ADC Sequence 3 */
|
|
(int)&Watchdog_IRQHandler, /* Watchdog timer */
|
|
(int)&Timer0A_IRQHandler, /* Timer 0 subtimer A */
|
|
(int)&Timer0B_IRQHandler, /* Timer 0 subtimer B */
|
|
(int)&Timer1A_IRQHandler, /* Timer 1 subtimer A */
|
|
(int)&Timer1B_IRQHandler, /* Timer 1 subtimer B */
|
|
(int)&Timer2A_IRQHandler, /* Timer 2 subtimer A */
|
|
(int)&Timer2B_IRQHandler, /* Timer 2 subtimer B */
|
|
(int)&Comp0_IRQHandler, /* Analog Comparator 0 */
|
|
(int)&Comp1_IRQHandler, /* Analog Comparator 1 */
|
|
(int)&Comp2_IRQHandler, /* Analog Comparator 2 */
|
|
(int)&SysCtrl_IRQHandler, /* System Control (PLL, OSC, BO) */
|
|
(int)&FlashCtrl_IRQHandler, /* FLASH Control */
|
|
(int)&GPIOPortF_IRQHandler, /* GPIO Port F */
|
|
(int)&GPIOPortG_IRQHandler, /* GPIO Port G */
|
|
(int)&GPIOPortH_IRQHandler, /* GPIO Port H */
|
|
(int)&UART2_IRQHandler, /* UART2 Rx and Tx */
|
|
(int)&SSI1_IRQHandler, /* SSI1 Rx and Tx */
|
|
(int)&Timer3A_IRQHandler, /* Timer 3 subtimer A */
|
|
(int)&Timer3B_IRQHandler, /* Timer 3 subtimer B */
|
|
(int)&I2C1_IRQHandler, /* I2C1 Master and Slave */
|
|
(int)&QEI1_IRQHandler, /* Quadrature Encoder 1 */
|
|
(int)&CAN0_IRQHandler, /* CAN0 */
|
|
(int)&CAN1_IRQHandler, /* CAN1 */
|
|
(int)&CAN2_IRQHandler, /* CAN2 */
|
|
(int)&Default_Handler, /* Reserved */
|
|
(int)&Hibernate_IRQHandler, /* Hibernate */
|
|
(int)&USB0_IRQHandler, /* USB0 */
|
|
(int)&PWMGen3_IRQHandler, /* PWM Generator 3 */
|
|
(int)&uDMAST_IRQHandler, /* uDMA Software Transfer */
|
|
(int)&uDMAError_IRQHandler, /* uDMA Error */
|
|
(int)&ADC1Seq0_IRQHandler, /* ADC1 Sequence 0 */
|
|
(int)&ADC1Seq1_IRQHandler, /* ADC1 Sequence 1 */
|
|
(int)&ADC1Seq2_IRQHandler, /* ADC1 Sequence 2 */
|
|
(int)&ADC1Seq3_IRQHandler, /* ADC1 Sequence 3 */
|
|
(int)&Default_Handler, /* Reserved */
|
|
(int)&Default_Handler, /* Reserved */
|
|
(int)&GPIOPortJ_IRQHandler, /* GPIO Port J */
|
|
(int)&GPIOPortK_IRQHandler, /* GPIO Port K */
|
|
(int)&GPIOPortL_IRQHandler, /* GPIO Port L */
|
|
(int)&SSI2_IRQHandler, /* SSI2 Rx and Tx */
|
|
(int)&SSI3_IRQHandler, /* SSI3 Rx and Tx */
|
|
(int)&UART3_IRQHandler, /* UART3 Rx and Tx */
|
|
(int)&UART4_IRQHandler, /* UART4 Rx and Tx */
|
|
(int)&UART5_IRQHandler, /* UART5 Rx and Tx */
|
|
(int)&UART6_IRQHandler, /* UART6 Rx and Tx */
|
|
(int)&UART7_IRQHandler, /* UART7 Rx and Tx */
|
|
(int)&Default_Handler, /* Reserved */
|
|
(int)&Default_Handler, /* Reserved */
|
|
(int)&Default_Handler, /* Reserved */
|
|
(int)&Default_Handler, /* Reserved */
|
|
(int)&I2C2_IRQHandler, /* I2C2 Master and Slave */
|
|
(int)&I2C3_IRQHandler, /* I2C3 Master and Slave */
|
|
(int)&Timer4A_IRQHandler, /* Timer 4 subtimer A */
|
|
(int)&Timer4B_IRQHandler, /* Timer 4 subtimer B */
|
|
(int)&Default_Handler, /* Reserved */
|
|
(int)&Default_Handler, /* Reserved */
|
|
(int)&Default_Handler, /* Reserved */
|
|
(int)&Default_Handler, /* Reserved */
|
|
(int)&Default_Handler, /* Reserved */
|
|
(int)&Default_Handler, /* Reserved */
|
|
(int)&Default_Handler, /* Reserved */
|
|
(int)&Default_Handler, /* Reserved */
|
|
(int)&Default_Handler, /* Reserved */
|
|
(int)&Default_Handler, /* Reserved */
|
|
(int)&Default_Handler, /* Reserved */
|
|
(int)&Default_Handler, /* Reserved */
|
|
(int)&Default_Handler, /* Reserved */
|
|
(int)&Default_Handler, /* Reserved */
|
|
(int)&Default_Handler, /* Reserved */
|
|
(int)&Default_Handler, /* Reserved */
|
|
(int)&Default_Handler, /* Reserved */
|
|
(int)&Default_Handler, /* Reserved */
|
|
(int)&Default_Handler, /* Reserved */
|
|
(int)&Default_Handler, /* Reserved */
|
|
(int)&Timer5A_IRQHandler, /* Timer 5 subtimer A */
|
|
(int)&Timer5B_IRQHandler, /* Timer 5 subtimer B */
|
|
(int)&WideTimer0A_IRQHandler, /* Wide Timer 0 subtimer A */
|
|
(int)&WideTimer0B_IRQHandler, /* Wide Timer 0 subtimer B */
|
|
(int)&WideTimer1A_IRQHandler, /* Wide Timer 1 subtimer A */
|
|
(int)&WideTimer1B_IRQHandler, /* Wide Timer 1 subtimer B */
|
|
(int)&WideTimer2A_IRQHandler, /* Wide Timer 2 subtimer A */
|
|
(int)&WideTimer2B_IRQHandler, /* Wide Timer 2 subtimer B */
|
|
(int)&WideTimer3A_IRQHandler, /* Wide Timer 3 subtimer A */
|
|
(int)&WideTimer3B_IRQHandler, /* Wide Timer 3 subtimer B */
|
|
(int)&WideTimer4A_IRQHandler, /* Wide Timer 4 subtimer A */
|
|
(int)&WideTimer4B_IRQHandler, /* Wide Timer 4 subtimer B */
|
|
(int)&WideTimer5A_IRQHandler, /* Wide Timer 5 subtimer A */
|
|
(int)&WideTimer5B_IRQHandler, /* Wide Timer 5 subtimer B */
|
|
(int)&FPU_IRQHandler, /* FPU */
|
|
(int)&Default_Handler, /* Reserved */
|
|
(int)&Default_Handler, /* Reserved */
|
|
(int)&I2C4_IRQHandler, /* I2C4 Master and Slave */
|
|
(int)&I2C5_IRQHandler, /* I2C5 Master and Slave */
|
|
(int)&GPIOPortM_IRQHandler, /* GPIO Port M */
|
|
(int)&GPIOPortN_IRQHandler, /* GPIO Port N */
|
|
(int)&QEI2_IRQHandler, /* Quadrature Encoder 2 */
|
|
(int)&Default_Handler, /* Reserved */
|
|
(int)&Default_Handler, /* Reserved */
|
|
(int)&GPIOPortP0_IRQHandler, /* GPIO Port P (Summary or P0) */
|
|
(int)&GPIOPortP1_IRQHandler, /* GPIO Port P1 */
|
|
(int)&GPIOPortP2_IRQHandler, /* GPIO Port P2 */
|
|
(int)&GPIOPortP3_IRQHandler, /* GPIO Port P3 */
|
|
(int)&GPIOPortP4_IRQHandler, /* GPIO Port P4 */
|
|
(int)&GPIOPortP5_IRQHandler, /* GPIO Port P5 */
|
|
(int)&GPIOPortP6_IRQHandler, /* GPIO Port P6 */
|
|
(int)&GPIOPortP7_IRQHandler, /* GPIO Port P7 */
|
|
(int)&GPIOPortQ0_IRQHandler, /* GPIO Port Q (Summary or Q0) */
|
|
(int)&GPIOPortQ1_IRQHandler, /* GPIO Port Q1 */
|
|
(int)&GPIOPortQ2_IRQHandler, /* GPIO Port Q2 */
|
|
(int)&GPIOPortQ3_IRQHandler, /* GPIO Port Q3 */
|
|
(int)&GPIOPortQ4_IRQHandler, /* GPIO Port Q4 */
|
|
(int)&GPIOPortQ5_IRQHandler, /* GPIO Port Q5 */
|
|
(int)&GPIOPortQ6_IRQHandler, /* GPIO Port Q6 */
|
|
(int)&GPIOPortQ7_IRQHandler, /* GPIO Port Q7 */
|
|
(int)&GPIOPortR_IRQHandler, /* GPIO Port R */
|
|
(int)&GPIOPortS_IRQHandler, /* GPIO Port S */
|
|
(int)&PWM1Gen0_IRQHandler, /* PWM 1 Generator 0 */
|
|
(int)&PWM1Gen1_IRQHandler, /* PWM 1 Generator 1 */
|
|
(int)&PWM1Gen2_IRQHandler, /* PWM 1 Generator 2 */
|
|
(int)&PWM1Gen3_IRQHandler, /* PWM 1 Generator 3 */
|
|
(int)&PWM1Fault_IRQHandler, /* PWM 1 Fault */
|
|
};
|
|
|
|
/* reset handler -----------------------------------------------------------*/
|
|
__attribute__((naked)) void Reset_Handler(void);
|
|
void Reset_Handler(void) {
|
|
extern int main(void);
|
|
extern int __libc_init_array(void);
|
|
extern unsigned __data_start; /* start of .data in the linker script */
|
|
extern unsigned __data_end__; /* end of .data in the linker script */
|
|
extern unsigned const __data_load; /* initialization values for .data */
|
|
extern unsigned __bss_start__; /* start of .bss in the linker script */
|
|
extern unsigned __bss_end__; /* end of .bss in the linker script */
|
|
extern void software_init_hook(void) __attribute__((weak));
|
|
|
|
/* relocate the Vector Table to leave room for the NULL-pointer region
|
|
* System Control Block/Vector Table Offset Reg := relocated Vector Table
|
|
*/
|
|
*(int const * volatile *)0xE000ED08 = &g_pfnVectors[256/sizeof(int)];
|
|
|
|
SystemInit(); /* CMSIS system initialization */
|
|
|
|
/* copy the data segment initializers from flash to RAM... */
|
|
unsigned const *src = &__data_load;
|
|
unsigned *dst;
|
|
for (dst = &__data_start; dst < &__data_end__; ++dst, ++src) {
|
|
*dst = *src;
|
|
}
|
|
|
|
/* zero fill the .bss segment in RAM... */
|
|
for (dst = &__bss_start__; dst < &__bss_end__; ++dst) {
|
|
*dst = 0;
|
|
}
|
|
|
|
/* init hook provided? */
|
|
if (&software_init_hook != (void (*)(void))(0)) {
|
|
/* give control to the RTOS */
|
|
software_init_hook(); /* this will also call __libc_init_array */
|
|
}
|
|
else {
|
|
/* call all static constructors in C++ (harmless in C programs) */
|
|
__libc_init_array();
|
|
(void)main(); /* application's entry point; should never return! */
|
|
}
|
|
|
|
/* the previous code should not return, but assert just in case... */
|
|
__asm volatile (" CPSID i");
|
|
assert_failed("Reset_Handler", 1U);
|
|
}
|
|
|
|
/* fault exception handlers ------------------------------------------------*/
|
|
__attribute__((naked)) void NMI_Handler(void);
|
|
void NMI_Handler(void) {
|
|
/* disable interrupts and reset SP in case of stack overflow */
|
|
__asm volatile (" CPSID i\n MOV sp,%0" : : "r" (&__stack_end__));
|
|
assert_failed("NMI", 1U);
|
|
}
|
|
/*..........................................................................*/
|
|
__attribute__((naked)) void HardFault_Handler(void);
|
|
void HardFault_Handler(void) {
|
|
/* disable interrupts and reset SP in case of stack overflow */
|
|
__asm volatile (" CPSID i\n MOV sp,%0" : : "r" (&__stack_end__));
|
|
assert_failed("HardFault", 1U);
|
|
}
|
|
/*..........................................................................*/
|
|
__attribute__((naked)) void MemManage_Handler(void);
|
|
void MemManage_Handler(void) {
|
|
/* disable interrupts and reset SP in case of stack overflow */
|
|
__asm volatile (" CPSID i\n MOV sp,%0" : : "r" (&__stack_end__));
|
|
assert_failed("MemManage", 1U);
|
|
}
|
|
/*..........................................................................*/
|
|
__attribute__((naked)) void BusFault_Handler(void);
|
|
void BusFault_Handler(void) {
|
|
/* disable interrupts and reset SP in case of stack overflow */
|
|
__asm volatile (" CPSID i\n MOV sp,%0" : : "r" (&__stack_end__));
|
|
assert_failed("BusFault", 1U);
|
|
}
|
|
/*..........................................................................*/
|
|
__attribute__((naked)) void UsageFault_Handler(void);
|
|
void UsageFault_Handler(void) {
|
|
/* disable interrupts and reset SP in case of stack overflow */
|
|
__asm volatile (" CPSID i\n MOV sp,%0" : : "r" (&__stack_end__));
|
|
assert_failed("UsageFault", 1U);
|
|
}
|
|
/*..........................................................................*/
|
|
__attribute__((naked)) void Default_Handler(void);
|
|
void Default_Handler(void) {
|
|
/* disable interrupts and reset SP in case of stack overflow */
|
|
__asm volatile (" CPSID i\n MOV sp,%0" : : "r" (&__stack_end__));
|
|
assert_failed("Default", 1U);
|
|
}
|