DatvRx/longmynd/fifo.h
2024-06-04 19:03:30 +02:00

36 lines
1.4 KiB
C
Executable File

/* -------------------------------------------------------------------------------------------------- */
/* The LongMynd receiver: fifo.h */
/* Copyright 2019 Heather Lomond */
/* -------------------------------------------------------------------------------------------------- */
/*
This file is part of longmynd.
Longmynd is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
Longmynd is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with longmynd. If not, see <https://www.gnu.org/licenses/>.
*/
#ifndef FIFO_H
#define FIFO_H
#include <stdint.h>
uint8_t fifo_ts_write(uint8_t*, uint32_t);
uint8_t fifo_status_write(uint8_t, uint32_t);
uint8_t fifo_status_string_write(uint8_t, char*);
uint8_t fifo_ts_init(char *fifo_path);
uint8_t fifo_status_init(char *fifo_path);
uint8_t fifo_close(bool);
#endif