avr-fw-modules/core/src/fifo_options.c

9 lines
158 B
C
Executable File

#include <hwo/fifo.h>
#include <sys/atomic.h>
#include <hwo/threads.h>
void fifo_options(FIFO* fifo,uint8_t options)
{
if (fifo)
fifo->flags = options;
};