| 123456789101112131415161718192021222324252627282930313233343536 |
- /*
- * @file AppBridge.h
- * @brief Deklarácia vysokoúrovňovej logiky firmvéru nBusBridge
- * @date Mar 5, 2025
- * @author Juraj Dudak
- */
- #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_ */
|