From fd766e4425c97ebc64107d71b8adb66983944d34 Mon Sep 17 00:00:00 2001 From: yutaka Date: Thu, 22 Jan 2009 05:45:33 +0000 Subject: [PATCH] =?UTF-8?q?tick=E3=81=8C=E9=81=85=E3=81=84=E3=81=AE?= =?UTF-8?q?=E3=81=A7=E3=81=8A=E6=89=8B=E8=BB=BD=E3=81=ABPRESCALER=E3=82=92?= =?UTF-8?q?=E5=A4=89=E6=9B=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit git-svn-id: file:///Volumes/Transfer/gigaleak_20231201/2020-09-30%20-%20paladin.7z/paladin/ctr_firmware@200 b871894f-2f95-9b40-918c-086798483c85 --- trunk/bootrom/include/brom/os/common/tick.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/trunk/bootrom/include/brom/os/common/tick.h b/trunk/bootrom/include/brom/os/common/tick.h index 6e2b70d..9ac505d 100644 --- a/trunk/bootrom/include/brom/os/common/tick.h +++ b/trunk/bootrom/include/brom/os/common/tick.h @@ -64,7 +64,7 @@ extern void i_osSetTick( u64 ); //---- conversion tick count <-> real time count #ifdef SDK_ARM11 #define OS_TICK_CLOCK HW_CPU_CLOCK -#define OS_TICK_PRESCALE 1 +#define OS_TICK_PRESCALE 2 #define OS_TICK_HI_SHIFT 28 // 2の累乗単位でチック管理するのであれば32は指定できない(初期値0では割り込みが発生しないため、最大31) #define OS_TICK_LO_MASK ((u32)(OS_TICK_HI_LSB-1)) #define OS_TICK_LO_MSB ((u32)(OS_TICK_HI_LSB>>1))