Files
F411-UART-DMA/Core/Src/Components/Start.cpp
2022-05-27 11:08:44 -03:00

26 lines
409 B
C++

/*
* Start.cpp
*
* Created on: May 20, 2022
* Author: Gabriel
*/
#include "main.h"
#include "Start.hpp"
#include "StaticFIFO.hpp"
StaticFIFO debug(12);
void Start(){
debug.push("string 1");
debug.push("string 2");
debug.push("string 3");
debug.pop(NULL, NULL, 64);
debug.pop(NULL, NULL, 64);
debug.pop(NULL, NULL, 64);
debug.pop(NULL, NULL, 64);
while(1){
}
}