Initial commit

This commit is contained in:
2020-06-17 09:06:02 +02:00
commit 9552a54c3d
12 changed files with 185 additions and 0 deletions

9
ringbuffer.h Normal file
View File

@ -0,0 +1,9 @@
#ifndef _RINGBUFFER_H_
#define _RINGBUFFER_H_
#include <stdint.h>
void ringbufferPut(uint32_t f);
uint32_t ringbufferGet();
#endif // _RINGBUFFER_H_