Files
CuboBmsFirmware/firmware/Core/Inc/driverSWUART2.h
2023-03-29 23:14:21 +03:00

13 lines
323 B
C

#include "stm32f1xx_hal.h"
#include <stdbool.h>
#include <stdio.h>
#include <stdarg.h>
#include "driverHWUART2.h"
#include "libRingbuffer.h"
#define RINGBUFFERSIZE 1024
void driverSWUART2Init(uint32_t baudRate);
char driverSWUART2PutCharInOutputBuffer(char character, FILE *stream);
bool driverSWUART2Task(void);