Vehicle Control Unit 0.01
This is the c library for controlling the car.
|
This file contains the headers of the interrupt handlers. More...
#include "../Inc/Systems/Comms/Can/Can.h"
Go to the source code of this file.
Functions | |
void | NMI_Handler (void) |
This function handles Non maskable interrupt. More... | |
void | HardFault_Handler (void) |
This function handles Hard fault interrupt. More... | |
void | MemManage_Handler (void) |
This function handles Memory management fault. More... | |
void | BusFault_Handler (void) |
This function handles Pre-fetch fault, memory access fault. More... | |
void | UsageFault_Handler (void) |
This function handles Undefined instruction or illegal state. More... | |
void | SVC_Handler (void) |
This function handles System service call via SWI instruction. More... | |
void | DebugMon_Handler (void) |
This function handles Debug monitor. More... | |
void | PendSV_Handler (void) |
This function handles Pendable request for system service. More... | |
void | SysTick_Handler (void) |
This function handles System tick timer. More... | |
void | CAN1_RX0_IRQHandler (void) |
This function handles CAN1 RX0 interrupts. More... | |
void | DMA2_Stream0_IRQHandler (void) |
This function handles DMA2 stream0 global interrupt. More... | |
void | DMA2_Stream1_IRQHandler (void) |
This function handles DMA2 stream1 global interrupt. More... | |
void | DMA2_Stream2_IRQHandler (void) |
This function handles DMA2 stream2 global interrupt. More... | |
void | CAN2_RX0_IRQHandler (void) |
This function handles CAN2 RX0 interrupts. More... | |
int | send_CAN_message_helper (CANBus bus, CAN_TxHeaderTypeDef *TxHeader, uint8_t *data) |
void | HAL_CAN_RxFifo0MsgPendingCallback (CAN_HandleTypeDef *hcan) |
This file contains the headers of the interrupt handlers.
Copyright (c) 2024 STMicroelectronics. All rights reserved.
This software is licensed under terms that can be found in the LICENSE file in the root directory of this software component. If no LICENSE file comes with this software, it is provided AS-IS.
Definition in file stm32f7xx_it.h.
void BusFault_Handler | ( | void | ) |
This function handles Pre-fetch fault, memory access fault.
Definition at line 123 of file stm32f7xx_it.c.
void CAN1_RX0_IRQHandler | ( | void | ) |
This function handles CAN1 RX0 interrupts.
Definition at line 213 of file stm32f7xx_it.c.
void CAN2_RX0_IRQHandler | ( | void | ) |
This function handles CAN2 RX0 interrupts.
Definition at line 269 of file stm32f7xx_it.c.
void DebugMon_Handler | ( | void | ) |
This function handles Debug monitor.
Definition at line 166 of file stm32f7xx_it.c.
void DMA2_Stream0_IRQHandler | ( | void | ) |
This function handles DMA2 stream0 global interrupt.
Definition at line 227 of file stm32f7xx_it.c.
void DMA2_Stream1_IRQHandler | ( | void | ) |
This function handles DMA2 stream1 global interrupt.
Definition at line 241 of file stm32f7xx_it.c.
void DMA2_Stream2_IRQHandler | ( | void | ) |
This function handles DMA2 stream2 global interrupt.
Definition at line 255 of file stm32f7xx_it.c.
void HAL_CAN_RxFifo0MsgPendingCallback | ( | CAN_HandleTypeDef * | hcan | ) |
Definition at line 314 of file stm32f7xx_it.c.
void HardFault_Handler | ( | void | ) |
This function handles Hard fault interrupt.
Definition at line 93 of file stm32f7xx_it.c.
void MemManage_Handler | ( | void | ) |
This function handles Memory management fault.
Definition at line 108 of file stm32f7xx_it.c.
void NMI_Handler | ( | void | ) |
This function handles Non maskable interrupt.
Definition at line 78 of file stm32f7xx_it.c.
void PendSV_Handler | ( | void | ) |
This function handles Pendable request for system service.
Definition at line 179 of file stm32f7xx_it.c.
int send_CAN_message_helper | ( | CANBus | bus, |
CAN_TxHeaderTypeDef * | TxHeader, | ||
uint8_t * | data | ||
) |
Definition at line 292 of file stm32f7xx_it.c.
void SVC_Handler | ( | void | ) |
This function handles System service call via SWI instruction.
Definition at line 153 of file stm32f7xx_it.c.
void SysTick_Handler | ( | void | ) |
This function handles System tick timer.
Definition at line 192 of file stm32f7xx_it.c.
void UsageFault_Handler | ( | void | ) |
This function handles Undefined instruction or illegal state.
Definition at line 138 of file stm32f7xx_it.c.