aboutsummaryrefslogtreecommitdiff
path: root/test_harness/fake_env.h
diff options
context:
space:
mode:
authorJosh Rahm <joshuarahm@gmail.com>2020-11-24 13:46:41 -0700
committerJosh Rahm <joshuarahm@gmail.com>2020-11-24 13:46:41 -0700
commit93b063fedfcf7409a67df035170ea5670cad22e1 (patch)
treea23321a7465d966b1ccf196ca00e65a70c9f9110 /test_harness/fake_env.h
parentb040195d31df6ad759f16ea3456471897f55daa1 (diff)
downloadstm32l4-93b063fedfcf7409a67df035170ea5670cad22e1.tar.gz
stm32l4-93b063fedfcf7409a67df035170ea5670cad22e1.tar.bz2
stm32l4-93b063fedfcf7409a67df035170ea5670cad22e1.zip
Moved action to top level.
Removed old iterations of the project and moved the files from 02-usart to the root directory since that's the sole place where the action is and that subproject has outgrown its initial title.
Diffstat (limited to 'test_harness/fake_env.h')
-rw-r--r--test_harness/fake_env.h20
1 files changed, 20 insertions, 0 deletions
diff --git a/test_harness/fake_env.h b/test_harness/fake_env.h
new file mode 100644
index 0000000..34056f4
--- /dev/null
+++ b/test_harness/fake_env.h
@@ -0,0 +1,20 @@
+#ifndef FAKE_ENV_H_
+#define FAKE_ENV_H_
+
+/* Functions which wil lazily load fake chunks of memory
+ * corresponding to the*/
+void* load_fake_ahb1__();
+void* load_fake_ahb2__();
+void* load_fake_apb1__();
+void* load_fake_apb2__();
+void* load_fake_sram1__();
+void* load_fake_sram2__();
+void* load_fake_scb__();
+void* load_fake_nvic__();
+void* load_fake_rcc__();
+void* load_fake_spi1__();
+void* load_fake_spi3__();
+
+void wipeout_fake_env();
+
+#endif /* FAKE_ENV_H_ */