summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--firmware/export/powermgmt.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/firmware/export/powermgmt.h b/firmware/export/powermgmt.h
index deeed06bd4..c49cd0e790 100644
--- a/firmware/export/powermgmt.h
+++ b/firmware/export/powermgmt.h
@@ -81,23 +81,23 @@ extern unsigned int power_thread_inputs;
81 * to define the correct values in the proper header*/ 81 * to define the correct values in the proper header*/
82 82
83#ifndef CURRENT_NORMAL 83#ifndef CURRENT_NORMAL
84#define CURRENT_NORMAL 1 /* usual current in mA */ 84#define CURRENT_NORMAL 5 /* usual current in mA */
85#endif 85#endif
86 86
87#ifndef CURRENT_BACKLIGHT 87#ifndef CURRENT_BACKLIGHT
88#define CURRENT_BACKLIGHT 1 /* additional current when backlight always on */ 88#define CURRENT_BACKLIGHT 5 /* additional current when backlight always on */
89#endif 89#endif
90 90
91#if defined(HAVE_RECORDING) && !defined(CURRENT_RECORD) 91#if defined(HAVE_RECORDING) && !defined(CURRENT_RECORD)
92#define CURRENT_RECORD 1 /* additional recording current */ 92#define CURRENT_RECORD 2 /* additional recording current */
93#endif /* HAVE_RECORDING && !CURRENT_RECORD*/ 93#endif /* HAVE_RECORDING && !CURRENT_RECORD*/
94 94
95#ifndef CURRENT_USB 95#ifndef CURRENT_USB
96#define CURRENT_USB 1 /* usual current in mA in USB mode */ 96#define CURRENT_USB 2 /* usual current in mA in USB mode */
97#endif 97#endif
98 98
99#if defined(HAVE_REMOTE_LCD) && !defined(CURRENT_REMOTE) 99#if defined(HAVE_REMOTE_LCD) && !defined(CURRENT_REMOTE)
100#define CURRENT_REMOTE 1 /* additional current when remote connected */ 100#define CURRENT_REMOTE 2 /* additional current when remote connected */
101#endif /* CURRENT_REMOTE && !HAVE_REMOTE_LCD */ 101#endif /* CURRENT_REMOTE && !HAVE_REMOTE_LCD */
102 102
103#if CONFIG_CHARGING 103#if CONFIG_CHARGING