16 lines
328 B
C
16 lines
328 B
C
#ifndef _TEST_FIFO_H_
|
|
#define _TEST_FIFO_H_
|
|
|
|
#define FIFO_BUFFER_SIZE 5
|
|
|
|
extern k_fifo_t test_fifo_00;
|
|
extern k_fifo_t test_fifo_01;
|
|
extern k_fifo_t test_fifo_02;
|
|
|
|
extern uint8_t fifo_buffer_00[FIFO_BUFFER_SIZE];
|
|
extern uint8_t fifo_buffer_01[FIFO_BUFFER_SIZE];
|
|
extern uint8_t fifo_buffer_02[FIFO_BUFFER_SIZE];
|
|
|
|
#endif
|
|
|