From f339afa53e0bab4b2d264c5ed4d59cdd19031b18 Mon Sep 17 00:00:00 2001 From: kusy Date: Tue, 27 May 2008 17:51:54 +0000 Subject: [PATCH] increasing voltage of the core by .1V, .85V didn't always work --- tos/platforms/intelmote2/chips/da9030/PMICM.nc | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/tos/platforms/intelmote2/chips/da9030/PMICM.nc b/tos/platforms/intelmote2/chips/da9030/PMICM.nc index 156886dc..3a596218 100644 --- a/tos/platforms/intelmote2/chips/da9030/PMICM.nc +++ b/tos/platforms/intelmote2/chips/da9030/PMICM.nc @@ -244,7 +244,10 @@ implementation { // Set default core voltage to 0.85 V #ifdef PXA27X_13M - call PMIC.setCoreVoltage(B2R1_TRIM_P85_V); + //P85 is not reliable, using P95 + call PMIC.setCoreVoltage(B2R1_TRIM_P95_V); +#else + call PMIC.setCoreVoltage(B2R1_TRIM_1_25_V); #endif startLDOs(); return SUCCESS; -- 2.39.2