From 2613f6735f432a8d054e3d00ac87c6ea551724af Mon Sep 17 00:00:00 2001 From: swissalpine Date: Fri, 16 Feb 2018 06:43:47 +0100 Subject: [PATCH] Set a higher hard limit for IC ratio As written in a comment and in the AAPS thread, I think the new upper hard limit of the IC ratio is to low, for childs but also for me (that's why I found the problem). I run a profile with IC = 60 g when I do long lasting sports activities, the limit of 40 is much to low - and I'm shure that there are childs which have a higher IC ratio in real life. I propose the value of 100 which is relativly compared not as high as the hard limit MAXISF = 720 mg/dl. --- app/src/main/java/info/nightscout/utils/HardLimits.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/src/main/java/info/nightscout/utils/HardLimits.java b/app/src/main/java/info/nightscout/utils/HardLimits.java index aadabba382..1b39951b85 100644 --- a/app/src/main/java/info/nightscout/utils/HardLimits.java +++ b/app/src/main/java/info/nightscout/utils/HardLimits.java @@ -34,7 +34,7 @@ public class HardLimits { public static final double MAXDIA = 7; public static final double MINIC = 2; - public static final double MAXIC = 40; + public static final double MAXIC = 100; public static final double MINISF = 2; // mgdl public static final double MAXISF = 720; // mgdl