Functions | |
void | hemisson_delay_s (int Delay) |
This function stop program execution (but not the interrupts) during the defined time in second. | |
void | hemisson_delay_ms (int Delay) |
This function stop program execution (but not the interrupts) during the defined time in millisecond. | |
void | hemisson_delay_us (int Delay) |
This function stop program execution (but not the interrupts) during the defined time in microsecond. | |
unsigned int32 | hemisson_get_time (void) |
This function return a 32 bits value which is increased every ms. | |
void | hemisson_set_time (unsigned int32 Time) |
This function allow user to set the current time value. |
|
This function stop program execution (but not the interrupts) during the defined time in millisecond.
Definition at line 352 of file hemisson.h.
00353 { 00354 delay_ms(Delay); 00355 } |
|
This function stop program execution (but not the interrupts) during the defined time in second.
Definition at line 336 of file hemisson.h.
00337 { 00338 int i; 00339 for(i = 0; i< Delay; i++) 00340 { 00341 delay_ms(1000); 00342 } 00343 } |
|
This function stop program execution (but not the interrupts) during the defined time in microsecond.
Definition at line 364 of file hemisson.h.
00365 { 00366 delay_us(Delay); 00367 } |
|
This function return a 32 bits value which is increased every ms.
Definition at line 376 of file hemisson.h. References __TimeTip.
00377 { 00378 return __TimeTip; 00379 } |
|
This function allow user to set the current time value.
Definition at line 388 of file hemisson.h. References __TimeTip.
00389 { 00390 __TimeTip = Time; 00391 } |