2024-03-28 17:51:39 +03:00
|
|
|
#ifndef BSP_H
|
|
|
|
#define BSP_H
|
2024-04-30 13:10:11 +03:00
|
|
|
|
2024-03-28 17:25:38 +03:00
|
|
|
#include "stm32f4xx.h"
|
|
|
|
#include "stm32f4xx_usart.h"
|
2024-05-04 17:20:57 +03:00
|
|
|
#include "stm32f4xx_gpio.h"
|
|
|
|
#include "stm32f4xx_rcc.h"
|
|
|
|
#include "stm32f4xx_dma.h"
|
2024-03-28 17:51:39 +03:00
|
|
|
void board_init();
|
2024-04-10 19:45:21 +03:00
|
|
|
uint32_t getRegister();
|
2024-04-30 13:10:11 +03:00
|
|
|
uint32_t getSysTick();
|
|
|
|
void delay(uint32_t);
|
|
|
|
|
2024-03-28 17:51:39 +03:00
|
|
|
#endif
|