summaryrefslogtreecommitdiff
path: root/firmware/export
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/export')
-rw-r--r--firmware/export/config-fmrecorder.h3
-rw-r--r--firmware/export/config-recorder.h3
-rw-r--r--firmware/export/config-recorderv2.h3
-rw-r--r--firmware/export/power.h1
4 files changed, 10 insertions, 0 deletions
diff --git a/firmware/export/config-fmrecorder.h b/firmware/export/config-fmrecorder.h
index 7c5d631875..264f9984aa 100644
--- a/firmware/export/config-fmrecorder.h
+++ b/firmware/export/config-fmrecorder.h
@@ -19,6 +19,9 @@
19/* Define this if you have a LiIon battery */ 19/* Define this if you have a LiIon battery */
20#define HAVE_LIION 20#define HAVE_LIION
21 21
22/* Define this if you need to power on ATA */
23#define NEEDS_ATA_POWER_ON
24
22/* Define this to the CPU frequency */ 25/* Define this to the CPU frequency */
23#define CPU_FREQ 11059200 26#define CPU_FREQ 11059200
24 27
diff --git a/firmware/export/config-recorder.h b/firmware/export/config-recorder.h
index f8326a0ead..85b0c392df 100644
--- a/firmware/export/config-recorder.h
+++ b/firmware/export/config-recorder.h
@@ -19,6 +19,9 @@
19/* Define this if you have ATA power-off control */ 19/* Define this if you have ATA power-off control */
20#define HAVE_ATA_POWER_OFF 20#define HAVE_ATA_POWER_OFF
21 21
22/* Define this if you need to power on ATA */
23#define NEEDS_ATA_POWER_ON
24
22/* Define this to the CPU frequency */ 25/* Define this to the CPU frequency */
23#define CPU_FREQ 11059200 26#define CPU_FREQ 11059200
24 27
diff --git a/firmware/export/config-recorderv2.h b/firmware/export/config-recorderv2.h
index 7c5d631875..264f9984aa 100644
--- a/firmware/export/config-recorderv2.h
+++ b/firmware/export/config-recorderv2.h
@@ -19,6 +19,9 @@
19/* Define this if you have a LiIon battery */ 19/* Define this if you have a LiIon battery */
20#define HAVE_LIION 20#define HAVE_LIION
21 21
22/* Define this if you need to power on ATA */
23#define NEEDS_ATA_POWER_ON
24
22/* Define this to the CPU frequency */ 25/* Define this to the CPU frequency */
23#define CPU_FREQ 11059200 26#define CPU_FREQ 11059200
24 27
diff --git a/firmware/export/power.h b/firmware/export/power.h
index 678260ac58..54d8ca1419 100644
--- a/firmware/export/power.h
+++ b/firmware/export/power.h
@@ -27,6 +27,7 @@ void power_init(void);
27bool charger_inserted(void); 27bool charger_inserted(void);
28void charger_enable(bool on); 28void charger_enable(bool on);
29void ide_power_enable(bool on); 29void ide_power_enable(bool on);
30bool ide_powered(void);
30void power_off(void); 31void power_off(void);
31 32
32#endif 33#endif