aboutsummaryrefslogtreecommitdiff
path: root/02.5-collatz/src/spin.c
diff options
context:
space:
mode:
authorJosh Rahm <joshuarahm@gmail.com>2020-11-24 13:43:58 -0700
committerJosh Rahm <joshuarahm@gmail.com>2020-11-24 13:43:58 -0700
commitb040195d31df6ad759f16ea3456471897f55daa1 (patch)
tree69aa22db45796c1a72f8596069a647061102d88b /02.5-collatz/src/spin.c
parent2478a549b9f64c50310da41c861b8f86fdea2861 (diff)
downloadstm32l4-b040195d31df6ad759f16ea3456471897f55daa1.tar.gz
stm32l4-b040195d31df6ad759f16ea3456471897f55daa1.tar.bz2
stm32l4-b040195d31df6ad759f16ea3456471897f55daa1.zip
add 2.5collatz to git before I delete it.
Diffstat (limited to '02.5-collatz/src/spin.c')
-rw-r--r--02.5-collatz/src/spin.c49
1 files changed, 49 insertions, 0 deletions
diff --git a/02.5-collatz/src/spin.c b/02.5-collatz/src/spin.c
new file mode 100644
index 0000000..fbd16b6
--- /dev/null
+++ b/02.5-collatz/src/spin.c
@@ -0,0 +1,49 @@
+#include "spin.h"
+#include "delay.h"
+#include "gpio.h"
+
+#define SHORT_DELAY 200000
+#define LONG_DELAY (SHORT_DELAY * 2)
+
+static void flash_bit(
+ uint32_t base, gpio_output_pin_t out_pin,
+ uint8_t bit /* 0 => 0, non-zero => 1 */)
+{
+ pin_on(out_pin);
+ if (bit) {
+ delay(base * 2);
+ } else {
+ delay(base);
+ }
+ pin_off(out_pin);
+ delay(base);
+}
+
+void spin(uint32_t base, uint8_t c)
+{
+ uint8_t code;
+ __IO gpio_port_t* port_b = enable_gpio(GPIO_PORT_B);
+ gpio_output_pin_t pin3 = set_gpio_pin_output(port_b, PIN_3);
+
+ for (;;) {
+ code = c;
+ flash_bit(base, pin3, code & 0x80);
+ code <<= 1;
+ flash_bit(base, pin3, code & 0x80);
+ code <<= 1;
+ flash_bit(base, pin3, code & 0x80);
+ code <<= 1;
+ flash_bit(base, pin3, code & 0x80);
+
+ code <<= 1;
+ flash_bit(base, pin3, code & 0x80);
+ code <<= 1;
+ flash_bit(base, pin3, code & 0x80);
+ code <<= 1;
+ flash_bit(base, pin3, code & 0x80);
+ code <<= 1;
+ flash_bit(base, pin3, code & 0x80);
+
+ delay(base * 4);
+ }
+}