| 1234567891011121314151617181920212223242526272829303132333435 |
- /*
- * AppBridge.h
- *
- * Created on: Mar 3, 2025
- * Author: juraj
- */
- #ifndef SRC_APPBRIDGE_H_
- #define SRC_APPBRIDGE_H_
- #if defined(STM32F401xC) || defined(STM32F401xE)
- #include "stm32f4xx_hal.h"
- #endif
- #if defined (STM32L432xx)
- #include "stm32l4xx_hal.h"
- #endif
- #if defined (STM32L031xx) || defined (STM32L082xx)
- #include "stm32l0xx_hal.h"
- #endif
- #ifdef __cplusplus
- extern "C"
- {
- #endif
- void app(UART_HandleTypeDef *, UART_HandleTypeDef *);
- #ifdef __cplusplus
- }
- #endif
- #endif /* SRC_APPBRIDGE_H_ */
|