aboutsummaryrefslogtreecommitdiff
path: root/led-test.c
diff options
context:
space:
mode:
authorPaul Selkirk <paul@psgd.org>2015-10-29 15:42:29 -0400
committerPaul Selkirk <paul@psgd.org>2015-10-29 15:42:29 -0400
commit9278e9bafd96105b64f9946eb94f5618f01649d3 (patch)
tree2aca37b1edebc9eb717456179f85927929c98cbb /led-test.c
parentfb73e2d75b4e99a29c28bbbaf754222010c273b7 (diff)
add libhal tests, some cleanup (some mess-making)
Diffstat (limited to 'led-test.c')
-rw-r--r--led-test.c33
1 files changed, 0 insertions, 33 deletions
diff --git a/led-test.c b/led-test.c
deleted file mode 100644
index 5e4401f..0000000
--- a/led-test.c
+++ /dev/null
@@ -1,33 +0,0 @@
-/*
- * Blink the four LEDs on the rev01 board in a pattern.
- */
-#include "stm32f4xx_hal.h"
-#include "stm-init.h"
-#include "stm-led.h"
-
-#define DELAY() HAL_Delay(125)
-
-void toggle_led(uint32_t times, uint32_t led_pin)
-{
- uint32_t i;
-
- for (i = 0; i < times; i++) {
- HAL_GPIO_TogglePin(LED_PORT, led_pin);
- DELAY();
- }
-}
-
-int
-main()
-{
- stm_init();
-
- while (1)
- {
- toggle_led(2, LED_BLUE);
- toggle_led(2, LED_GREEN);
- toggle_led(2, LED_YELLOW);
- toggle_led(2, LED_RED);
- }
-
-}