BLE temperature profile using digital DS1820 or analog LM35 sensors

Dependencies:   DS1820

Embed: (wiki syntax)

« Back to documentation index

app_fifo.h File Reference

app_fifo.h File Reference

Go to the source code of this file.

Data Structures

struct  app_fifo_t
 A FIFO instance structure. More...

Functions

uint32_t app_fifo_init (app_fifo_t *p_fifo, uint8_t *p_buf, uint16_t buf_size)
 Function for initializing the FIFO.
uint32_t app_fifo_put (app_fifo_t *p_fifo, uint8_t byte)
 Function for adding an element to the FIFO.
uint32_t app_fifo_get (app_fifo_t *p_fifo, uint8_t *p_byte)
 Function for getting the next element from the FIFO.
uint32_t app_fifo_flush (app_fifo_t *p_fifo)
 Function for flushing the FIFO.

Detailed Description

Definition in file app_fifo.h.