summaryrefslogtreecommitdiff
path: root/test/fake_battery.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/fake_battery.c')
-rw-r--r--test/fake_battery.c42
1 files changed, 42 insertions, 0 deletions
diff --git a/test/fake_battery.c b/test/fake_battery.c
new file mode 100644
index 0000000000..4442300572
--- /dev/null
+++ b/test/fake_battery.c
@@ -0,0 +1,42 @@
+/* Copyright 2019 The Chromium OS Authors. All rights reserved.
+ * Use of this source code is governed by a BSD-style license that can be
+ * found in the LICENSE file.
+ *
+ * Fake BATTERY module.
+ */
+#include "battery.h"
+#include "common.h"
+
+int battery_design_voltage(int *voltage)
+{
+ *voltage = 0;
+ return 0;
+}
+
+enum battery_present battery_is_present(void)
+{
+ return BP_NO;
+}
+
+int battery_design_capacity(int *capacity)
+{
+ *capacity = 0;
+ return 0;
+}
+
+int battery_full_charge_capacity(int *capacity)
+{
+ *capacity = 0;
+ return 0;
+}
+
+int battery_remaining_capacity(int *capacity)
+{
+ *capacity = 0;
+ return 0;
+}
+
+int battery_status(int *status)
+{
+ return EC_ERROR_UNIMPLEMENTED;
+}