Quantcast
Channel: Microcontrollers, Programming and IoT
Viewing all articles
Browse latest Browse all 1271

what is List in program

$
0
0
Hello
This code is source file of list. generally List means the number of items. I want to understand what is use of this program ? why do we need this source file ?
Code:
#include <stdlib.h>
#include "FreeRTOS.h"
#include "list.h"

void vListInitialise( xList * const pxList )
{
    /* The list structure contains a list item which is used to mark the
    end of the list.  To initialise the list the list end is inserted
    as the only list entry. */
    pxList->pxIndex = ( xListItem * )...
what is List in program

Viewing all articles
Browse latest Browse all 1271

Trending Articles