Merge branch 'master' into finley

This commit is contained in:
2024-03-20 17:31:16 +01:00

View File

@@ -1,7 +1,7 @@
#include "buffer.h"
// implementation for a FIFO-buffer with ints
// this very simple FIFO-buffer can only hold one int
#define FIFO_SIZE 8
#define FIFO_SIZE 100
// shared variables within this file
static int FIFO[FIFO_SIZE];