aboutsummaryrefslogtreecommitdiffstats
path: root/examples
diff options
context:
space:
mode:
authorMarti Bolivar <mbolivar@leaflabs.com>2011-02-27 05:39:55 -0500
committerMarti Bolivar <mbolivar@leaflabs.com>2011-02-27 06:06:12 -0500
commit9136ea9015c68fba7302dbe33a759aea43860b2f (patch)
tree885f0d99ae776fa649d17732583205a1cbe13621 /examples
parentdef4173e683c3538388aabceeb08e5336c2bdadf (diff)
downloadlibrambutan-9136ea9015c68fba7302dbe33a759aea43860b2f.tar.gz
librambutan-9136ea9015c68fba7302dbe33a759aea43860b2f.zip
Refactor backup (BKP) and power (PWR) routines.
Diffstat (limited to 'examples')
-rw-r--r--examples/test-bkp.cpp78
1 files changed, 78 insertions, 0 deletions
diff --git a/examples/test-bkp.cpp b/examples/test-bkp.cpp
new file mode 100644
index 0000000..27f87bd
--- /dev/null
+++ b/examples/test-bkp.cpp
@@ -0,0 +1,78 @@
+#include <stdio.h>
+
+#include "wirish.h"
+#include "bkp.h"
+#include "iwdg.h"
+
+void print_bkp_contents();
+void write_to_bkp(uint16 val);
+
+void setup() {
+ pinMode(BOARD_BUTTON_PIN, INPUT);
+
+ Serial2.begin(9600);
+ Serial2.println("*** Beginning BKP test");
+
+ Serial2.println("Init...");
+ bkp_init();
+ Serial2.println("Done.");
+
+ print_bkp_contents();
+ write_to_bkp(10);
+ print_bkp_contents();
+
+ Serial2.println("Enabling backup writes.");
+ bkp_enable_writes();
+ write_to_bkp(20);
+ print_bkp_contents();
+
+ Serial2.println("Disabling backup writes.");
+ bkp_disable_writes();
+ write_to_bkp(30);
+ print_bkp_contents();
+
+ Serial2.println("Done testing backup registers; press button to enable "
+ "independent watchdog (in order to cause a reset).");
+ waitForButtonPress(0);
+ iwdg_init(IWDG_PRE_4, 1);
+ Serial2.println();
+}
+
+void loop() {
+}
+
+void print_bkp_contents() {
+ Serial2.println("Backup data register contents:");
+ char buf[100];
+ for (int i = 1; i <= NR_BKP_REGS; i++) {
+ snprintf(buf, sizeof buf, "DR%d: %d ", i, bkp_read(i));
+ Serial2.print(buf);
+ if (i % 5 == 0) Serial2.println();
+ }
+ Serial2.println();
+}
+
+void write_to_bkp(uint16 val) {
+ Serial2.print("Attempting to write ");
+ Serial2.print(val);
+ Serial2.println(" to backup registers...");
+ for (int i = 1; i <= NR_BKP_REGS; i++) {
+ bkp_write(i, val);
+ }
+ Serial2.println("Done.");
+}
+
+__attribute__((constructor)) void premain() {
+ init();
+}
+
+int main(void) {
+ init();
+ setup();
+
+ while (1) {
+ loop();
+ }
+ return 0;
+}
+