Hi ,
I can not understand or there is something wrong in this example here ;
He defined "point_fifo" but initialized "my_fifo" , How does this work ?
struct point
{
int x, y;
}point_t;
NRF_ATFIFO_DEF(point_fifo, point_t, 16);
int main(void)
{
NRF_ATFIFO_INIT(my_fifo);
nrf_atfifo_context_t context;
point_t * point;
if(NULL != (point = nrf_atfifo_item_alloc(point_fifo, &context)))
{