diff options
| author | Miguel <m.i@gmx.at> | 2018-09-10 22:31:48 +0200 |
|---|---|---|
| committer | Miguel <m.i@gmx.at> | 2018-09-10 22:31:48 +0200 |
| commit | a7ca82133bcb8139bb9d11aa717657ef42ab6cfe (patch) | |
| tree | befef8186e0adb819ae77b9fc89c9a37b900859f /driver/timer.c | |
| parent | fe83c82693ae231368d1e8c196fb975c3df1dd30 (diff) | |
fixed bug in asm_pit_rate_
Diffstat (limited to 'driver/timer.c')
| -rw-r--r-- | driver/timer.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/driver/timer.c b/driver/timer.c index 7e95afe..7f9859c 100644 --- a/driver/timer.c +++ b/driver/timer.c @@ -153,8 +153,8 @@ uint64_t timer_init() { uint64_t epoch_time=get_rtc_time(); task_system_clock_start=epoch_time*25; // since pit ticks 25times a second - asm_pit_rate_40ms(); - fixme("pit rate once did not work anymore 1/25 seconds?? but now ok?" ); + asm_pit_rate_40ms(); //tick at 25hz + fixme("pit rate does only seem to work occasionally.. 1/25 seconds???" ); return epoch_time; } |
