2016-06-07 23:36:22 +02:00
|
|
|
package info.nightscout.androidaps;
|
2016-06-07 21:48:17 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Created by mike on 07.06.2016.
|
|
|
|
*/
|
|
|
|
public class Config {
|
2017-12-01 22:51:25 +01:00
|
|
|
public static int SUPPORTEDNSVERSION = 1002; // 0.10.00
|
2017-06-12 09:30:04 +02:00
|
|
|
|
2016-06-19 20:06:00 +02:00
|
|
|
// MAIN FUCTIONALITY
|
2016-07-15 23:53:14 +02:00
|
|
|
public static final boolean APS = BuildConfig.APS;
|
2016-06-19 20:06:00 +02:00
|
|
|
// PLUGINS
|
2017-06-04 00:46:44 +02:00
|
|
|
public static final boolean NSCLIENT = BuildConfig.NSCLIENTOLNY;
|
2017-11-29 16:07:26 +01:00
|
|
|
public static final boolean G5UPLOADER = BuildConfig.G5UPLOADER;
|
2018-01-14 17:11:39 +01:00
|
|
|
public static final boolean PUMPCONTROL = BuildConfig.PUMPCONTROL;
|
2016-06-19 20:06:00 +02:00
|
|
|
|
2018-03-17 13:43:25 +01:00
|
|
|
public static final boolean HWPUMPS = BuildConfig.PUMPDRIVERS;
|
2016-07-13 15:56:27 +02:00
|
|
|
|
2017-11-29 16:07:26 +01:00
|
|
|
public static final boolean ACTION = !BuildConfig.NSCLIENTOLNY && !BuildConfig.G5UPLOADER;
|
|
|
|
public static final boolean MDI = !BuildConfig.NSCLIENTOLNY && !BuildConfig.G5UPLOADER;
|
|
|
|
public static final boolean OTHERPROFILES = !BuildConfig.NSCLIENTOLNY && !BuildConfig.G5UPLOADER;
|
|
|
|
public static final boolean SAFETY = !BuildConfig.NSCLIENTOLNY && !BuildConfig.G5UPLOADER;
|
2017-02-23 20:00:33 +01:00
|
|
|
|
2017-11-29 16:07:26 +01:00
|
|
|
public static final boolean SMSCOMMUNICATORENABLED = !BuildConfig.NSCLIENTOLNY && !BuildConfig.G5UPLOADER;
|
2017-02-23 20:00:33 +01:00
|
|
|
|
|
|
|
|
2016-06-07 21:48:17 +02:00
|
|
|
public static final boolean detailedLog = true;
|
|
|
|
public static final boolean logFunctionCalls = true;
|
|
|
|
public static final boolean logIncommingData = true;
|
2016-06-10 18:50:46 +02:00
|
|
|
public static final boolean logAPSResult = true;
|
2016-06-11 20:45:40 +02:00
|
|
|
public static final boolean logPumpComm = true;
|
2016-06-14 23:45:55 +02:00
|
|
|
public static final boolean logPrefsChange = true;
|
|
|
|
public static final boolean logConfigBuilder = true;
|
2016-06-24 17:16:17 +02:00
|
|
|
public static final boolean logNSUpload = true;
|
2016-07-10 15:05:13 +02:00
|
|
|
public static final boolean logPumpActions = true;
|
2016-07-15 19:59:24 +02:00
|
|
|
public static final boolean logCongigBuilderActions = true;
|
2017-10-02 19:57:41 +02:00
|
|
|
public static final boolean logAutosensData = false;
|
2017-10-20 01:50:42 +02:00
|
|
|
public static final boolean logEvents = false;
|
2018-04-12 09:40:12 +02:00
|
|
|
public static final boolean logProfile = false;
|
2016-07-08 00:17:02 +02:00
|
|
|
|
|
|
|
// DanaR specific
|
|
|
|
public static final boolean logDanaBTComm = true;
|
2017-09-13 00:35:03 +02:00
|
|
|
public static boolean logDanaMessageDetail = true;
|
2016-07-08 00:17:02 +02:00
|
|
|
public static final boolean logDanaSerialEngine = true;
|
2016-06-07 21:48:17 +02:00
|
|
|
}
|