Add Kernel::impl::get_tick_count() stub

pull/12430/head
Kevin Bracey 2020-05-08 16:48:30 +03:00
parent 355b45ade1
commit 3b7eae1109
1 changed files with 5 additions and 0 deletions

View File

@ -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;
}