mirror of https://github.com/ARMmbed/mbed-os.git
Add Kernel::impl::get_tick_count() stub
parent
355b45ade1
commit
3b7eae1109
|
@ -20,6 +20,11 @@
|
|||
namespace rtos {
|
||||
|
||||
uint64_t Kernel::get_ms_count()
|
||||
{
|
||||
return impl::get_tick_count();
|
||||
|
||||
}
|
||||
uint64_t Kernel::impl::get_tick_count()
|
||||
{
|
||||
return 20;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue