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

9 lines
158 B
C
Raw Normal View History

2017-09-27 13:25:39 +02:00
#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;
};