PreviousNext
Help > Software > The <platform.h> Library for C.impl > System
System

void reset(void)

Immediately reset the system.

 

void delay_ms(unsigned long milliseconds)

Generate specified delay in milliseconds.

 

void set_timer(unsigned long milliseconds, void (*intHandler)() )

Enable an internal timer counter which calls the specified function ‘intHandler()’ every time when at least the given number of milliseconds have passed. The timer can be disabled by setting 0 in the ‘milliseconds’ parameter.

C.impl allows multiple simultaneously working timers, each calling a different handler function.