diff options
| author | Thom Johansen <thomj@rockbox.org> | 2005-12-12 13:53:22 +0000 |
|---|---|---|
| committer | Thom Johansen <thomj@rockbox.org> | 2005-12-12 13:53:22 +0000 |
| commit | 544b03cf9abafc080e10a91f65046eda540ff5ae (patch) | |
| tree | 1fabed08230448393c5cab1f20f1a845f3ab883d /firmware/export | |
| parent | 07a2ad2a2246c649ec86c2adb077ec9ed3cfef11 (diff) | |
| download | rockbox-544b03cf9abafc080e10a91f65046eda540ff5ae.zip rockbox-544b03cf9abafc080e10a91f65046eda540ff5ae.tar.gz rockbox-544b03cf9abafc080e10a91f65046eda540ff5ae.tar.bz2 rockbox-544b03cf9abafc080e10a91f65046eda540ff5ae.tar.xz | |
Add interrupt handler for iPod. Add timer tick support. Remove temporary thread sleep solution. Remove temporary iPod current_tick solution.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@8224 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware/export')
| -rw-r--r-- | firmware/export/kernel.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/firmware/export/kernel.h b/firmware/export/kernel.h index 67dadbc..23c7bc7 100644 --- a/firmware/export/kernel.h +++ b/firmware/export/kernel.h @@ -66,12 +66,7 @@ struct mutex }; /* global tick variable */ -#if (CONFIG_CPU==PP5020) -/* A temporary hack until timer interrupt is enabled - use the RTC */ -#define current_tick ((*((volatile long*)0x60005010))/10000) -#else extern long current_tick; -#endif #ifdef SIMULATOR #define sleep(x) sim_sleep(x) |