os-core/kernel/core/timer.h

26 lines
596 B
C
Raw Normal View History

2019-05-29 11:10:01 +02:00
/******************************************************************************
*
* Copyright (c) 2017-2019 by Löwenware Ltd
* Please, refer LICENSE file for legal information
*
******************************************************************************/
/**
2019-12-01 22:57:02 +01:00
* @file timer.h
2019-05-29 11:10:01 +02:00
* @author Ilja Kartašov <ik@lowenware.com>
* @brief
*
* @see https://lowenware.com/
*/
2019-12-01 22:57:02 +01:00
#ifndef TIMER_H_8D327261_47D6_4832_8DC5_31BF1614A21F
#define TIMER_H_8D327261_47D6_4832_8DC5_31BF1614A21F
2019-05-29 11:10:01 +02:00
void
2019-12-01 22:57:02 +01:00
k_timer_init(void);
2019-05-29 11:10:01 +02:00
void
2019-12-01 22:57:02 +01:00
k_timer_irq_handler(void);
2019-05-29 11:10:01 +02:00
2019-12-01 22:57:02 +01:00
#endif /* !TIMER_H */