26 lines
409 B
C++
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){
|
|
}
|
|
}
|