summaryrefslogtreecommitdiff
path: root/tests/i2c-master/hw.h
diff options
context:
space:
mode:
authorjaseg <git@jaseg.net>2018-07-17 15:43:26 +0200
committerjaseg <git@jaseg.net>2018-07-17 15:43:26 +0200
commit6df66b77ba5b27bce5630694742f2dac57b8d3eb (patch)
treefc14370fdea41b6d7a672758aa89886b9107f78c /tests/i2c-master/hw.h
parent90ce052d82daa86e1e86ab4dac7fbba0cdda8680 (diff)
downloadolsndot-6df66b77ba5b27bce5630694742f2dac57b8d3eb.tar.gz
olsndot-6df66b77ba5b27bce5630694742f2dac57b8d3eb.tar.bz2
olsndot-6df66b77ba5b27bce5630694742f2dac57b8d3eb.zip
Isolate usb-serial-rs485 tree
Diffstat (limited to 'tests/i2c-master/hw.h')
-rw-r--r--tests/i2c-master/hw.h42
1 files changed, 0 insertions, 42 deletions
diff --git a/tests/i2c-master/hw.h b/tests/i2c-master/hw.h
deleted file mode 100644
index 8b235be..0000000
--- a/tests/i2c-master/hw.h
+++ /dev/null
@@ -1,42 +0,0 @@
-/*
- * Feb 2017 Karl Palsson <karlp@tweak.net.au>
- */
-
-#include <stdbool.h>
-#include <stdint.h>
-
-#pragma once
-
-struct hw_detail
-{
- uint32_t periph; /* eg: I2C1 */
- uint32_t periph_rcc; /* eg: RCC_I2C1 */
- uint32_t periph_rst; /* eg: RST_I2C1 */
- uint32_t pins; /* eg: GPIO8 | GPIO9 */ /* ASSUMES SAME PORT*/
- uint32_t port; /* eg GPIOB */
- uint32_t port_rcc; /* eg RCC_GPIOB */
- uint32_t trigger_rcc;
- uint32_t trigger_port;
- uint32_t trigger_pin;
- int i2c_clock_megahz; /* eg 42 for APB1 on an F4@168Mhz */
-};
-
-extern struct hw_detail hw_details;
-
-#ifdef __cplusplus
-extern "C" {
-#endif
-
-/**
- * Expected to setup clocks, turn on all peripherals, and configure
- * any gpios necessary.
- * @param hw pointer to hw details necessary
- */
- void hw_setup(struct hw_detail* hw);
-
- /* let devices have a status led */
- void hw_set_led(bool val);
-
-#ifdef __cplusplus
-}
-#endif