ChibiOS/RT
2.5.1
VTList Struct Reference

Detailed Description

Virtual timers list header.

Note:
The delta list is implemented as a double link bidirectional list in order to make the unlink time constant, the reset of a virtual timer is often used in the code.

Definition at line 108 of file chvt.h.

#include <chvt.h>

Collaboration diagram for VTList:

Data Fields

VirtualTimervt_next
 Next timer in the delta list.
VirtualTimervt_prev
 Last timer in the delta list.
systime_t vt_time
 Must be initialized to -1.
volatile systime_t vt_systime
 System Time counter.

Field Documentation

Next timer in the delta list.

Definition at line 109 of file chvt.h.

Referenced by _vt_init(), and chVTSetI().

Last timer in the delta list.

Definition at line 111 of file chvt.h.

Referenced by _vt_init().

Must be initialized to -1.

Definition at line 113 of file chvt.h.

Referenced by _vt_init().

System Time counter.

Definition at line 114 of file chvt.h.

Referenced by _vt_init().