HP85 GPIB Disk Emulator
1.0
HP85GPIBDiskEmulator
|
size_t queue_pop_buffer(queue_t *q, uint8_t *dst, size_t size)
Get a data buffer from the ring buffer. Note: This function does not wait/block until there is enough...
void queue_del(queue_t *q)
Delete a ring buffer and free memory.
dst_t dst
DST start and stop in GMT epoch.
size_t queue_push_buffer(queue_t *q, uint8_t *src, size_t size)
Add a data buffer to the ring buffer Note: This function does not wait/block util there is enough fre...
int queue_popc(queue_t *q)
Remove a byte from the ring buffer Note: This function does not wait/block util there is data to meet...
size_t queue_full(queue_t *q)
Is the ring buffer full ?
size_t queue_empty(queue_t *q)
Is the ring buffer empty ?
size_t queue_used(queue_t *q)
Find the number of bytes used by the ring buffer.
size_t queue_space(queue_t *q)
Find the amount of free space remaining in the ring buffer.
void queue_flush(queue_t *q)
Flush ring buffer.
queue_t * queue_new(size_t size)
Create a ring buffer of a given size.
int queue_pushc(queue_t *q, uint8_t c)
Add a byte to the ring buffer Note: This function does not wait/block util there is enough free space...