13 lines
323 B
C
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);
|