Files
Espresso/include/drivers/timer.h
2025-06-13 18:03:39 -05:00

12 lines
168 B
C

#ifndef _TIMER_H
#define _TIMER_H
#include <stdint.h>
extern volatile uint32_t tick_count;
void timer_sleep(uint32_t ms);
void pit_init(uint32_t frequency);
#endif