You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
46 lines
1.0 KiB
46 lines
1.0 KiB
#ifndef __MAIN_H
|
|
#define __MAIN_H
|
|
|
|
#include "stm32f4xx.h"
|
|
#include "stm32f4xx_hal.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
extern DAC_HandleTypeDef hdac1;
|
|
extern RNG_HandleTypeDef hrng;
|
|
extern TIM_HandleTypeDef htim2;
|
|
extern TIM_HandleTypeDef htim6;
|
|
extern TIM_HandleTypeDef htim7;
|
|
|
|
void MX_DAC_Init(void);
|
|
void MX_DMA_Init(void);
|
|
void MX_GPIO_Init(void);
|
|
void MX_RNG_Init(void);
|
|
void MX_TIM2_Init(void);
|
|
void MX_TIM6_Init(void);
|
|
void MX_TIM7_Init(void);
|
|
|
|
|
|
void Error_Handler(void);
|
|
|
|
void NMI_Handler(void);
|
|
void HardFault_Handler(void);
|
|
void MemManage_Handler(void);
|
|
void BusFault_Handler(void);
|
|
void UsageFault_Handler(void);
|
|
void DebugMon_Handler(void);
|
|
void SysTick_Handler(void);
|
|
void EXTI0_IRQHandler(void);
|
|
void DMA1_Stream5_IRQHandler(void);
|
|
void TIM2_IRQHandler(void);
|
|
void TIM7_IRQHandler(void);
|
|
void OTG_FS_IRQHandler(void);
|
|
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* __MAIN_H */
|
|
|