Initial commit

This commit is contained in:
Yury Shuvakin
2022-11-12 23:42:55 +03:00
parent 9a18b5d8e7
commit 190522943f
228 changed files with 141037 additions and 0 deletions

12
Core/Inc/driverSWUART2.h Normal file
View File

@@ -0,0 +1,12 @@
#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);