/** * @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_ /** Veľkosť UART buffera Master-Bridge */ #define UART_FRAME_SIZE 64 #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_ */