1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
29
30
31
32
33
34
35
36
37
38
43
46
47
52
59
60
65
72
73
78
85
86
91
98
99
104
107
108
113
117
118
123
124
125
130
134
135
140
144
145
150
/* ... */
#include "stm32f4xx_hal.h"
#include "main.h"
#include "stm32f4xx_it.h"
#include "ethernetif.h"
#include "cmsis_os.h"
5 includes
Includes
/* ... */
void NMI_Handler(void)
{
}{ ... }
/* ... */
void HardFault_Handler(void)
{
while (1)
{
}while (1) { ... }
}{ ... }
/* ... */
void MemManage_Handler(void)
{
while (1)
{
}while (1) { ... }
}{ ... }
/* ... */
void BusFault_Handler(void)
{
while (1)
{
}while (1) { ... }
}{ ... }
/* ... */
void UsageFault_Handler(void)
{
while (1)
{
}while (1) { ... }
}{ ... }
/* ... */
void DebugMon_Handler(void)
{
}{ ... }
/* ... */
void SysTick_Handler(void)
{
osSystickHandler();
}{ ... }
...
...
/* ... */
void EXTI15_10_IRQHandler(void)
{
HAL_GPIO_EXTI_IRQHandler(GPIO_PIN_14);
}{ ... }
/* ... */
void ETH_IRQHandler(void)
{
ETHERNET_IRQHandler();
}{ ... }
/* ... */
/* ... */