#include <FreeRTOS.h>
#include <stdint.h>
#include <stdbool.h>
Go to the source code of this file.
|
struct buffer * | buffer_init (struct buffer_base *base, uint32_t len, uint32_t sizeOfEntry, bool readOnly, uint32_t irqnr) |
|
int32_t | buffer_deinit (struct buffer *buffer) |
|
int32_t | buffer_is_full (struct buffer *buffer) |
|
bool | buffer_empty (struct buffer *buffer) |
|
int32_t | buffer_write (struct buffer *buffer, uint8_t *data, int32_t size) |
|
int32_t | buffer_read (struct buffer *buffer, uint8_t *data, int32_t size, TickType_t waittime) |
|