VZTECH / Mbed 2 deprecated header_main

Dependencies:   EthernetInterface NTPClient mbed-rtos mbed

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers timeslice.h Source File

timeslice.h

00001 #include <stdint.h>
00002 
00003 #define __MAX_TIMESLICES__ 4
00004 
00005 class Timeslice{
00006     private :
00007         uint8_t timeslice[ __MAX_TIMESLICES__ ];
00008     public :
00009         Timeslice();
00010         ~Timeslice();
00011         uint8_t get_timeslice();
00012         void return_timeslice( uint8_t i );
00013         void reset();
00014         uint8_t remain_timeslices( void );
00015 };