commit
a77a4e9040
@ -1,7 +1,7 @@
|
|||||||
variables:
|
variables:
|
||||||
SW_KERNEL: "0"
|
SW_KERNEL: "0"
|
||||||
SW_MAJOR: "1"
|
SW_MAJOR: "1"
|
||||||
SW_MINOR: "9"
|
SW_MINOR: "10"
|
||||||
|
|
||||||
before_script:
|
before_script:
|
||||||
- "echo $CI_BUILD_ID"
|
- "echo $CI_BUILD_ID"
|
||||||
|
@ -60,5 +60,6 @@ struct thread_context *thread_create(
|
|||||||
|
|
||||||
void thread_exit(void);
|
void thread_exit(void);
|
||||||
void sleep_ms(unsigned int ms);
|
void sleep_ms(unsigned int ms);
|
||||||
|
unsigned long sys_tick_get_ms(void);
|
||||||
|
|
||||||
#endif /* SOURCE_FIRMWARE_KERNEL_INTERFACE_KERNEL_H_ */
|
#endif /* SOURCE_FIRMWARE_KERNEL_INTERFACE_KERNEL_H_ */
|
||||||
|
@ -54,6 +54,11 @@ void sys_tick_init(const struct loki_timer *hw_timer)
|
|||||||
timer_set_it_callback(hw_timer, timer_cb, NULL);
|
timer_set_it_callback(hw_timer, timer_cb, NULL);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
unsigned long sys_tick_get_ms(void)
|
||||||
|
{
|
||||||
|
return sys_tick_obj.tick;
|
||||||
|
}
|
||||||
|
|
||||||
void sleep_ms(unsigned int ms)
|
void sleep_ms(unsigned int ms)
|
||||||
{
|
{
|
||||||
int irq;
|
int irq;
|
||||||
@ -68,4 +73,3 @@ void sleep_ms(unsigned int ms)
|
|||||||
restore_irq(irq);
|
restore_irq(irq);
|
||||||
schedule();
|
schedule();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user