Add SysTick handler

This commit is contained in:
Thomas Klaehn
2020-04-09 09:39:53 +02:00
parent b93152db8f
commit 6e7b955d71
3 changed files with 64 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
#ifndef __PLATFORM_CM4_SYSTEMTICK_H__
#define __PLATFORM_CM4_SYSTEMTICK_H__
#include "platform/nrf52/InterruptHandler.h"
namespace pinetime::platform::cm4 {
class SystemTick : public pinetime::platform::nrf52::InterruptHandler
{
public:
SystemTick();
void handle();
void enable();
void disable();
uint32_t tick();
private:
uint32_t sys_tick;
};
}
#endif