vanity-convert: add Makefile
[hackover2013-badge-firmware.git] / badge / init.c
index 5acecad..7f9cec1 100644 (file)
@@ -1,4 +1,5 @@
 #include "init.h"
+#include "backlight.h"
 #include "pinconfig.h"
 #include "util/util.h"
 #include "ui/display.h"
@@ -6,44 +7,37 @@
 #include <core/wdt/wdt.h>
 #include <core/gpio/gpio.h>
 
-static void badge_init_backlight(void) {
-  HOB_SET_PIN_FUNC(HOB_LCD_BACKLIGHT, CLKOUT);
-
-  wdtInit(false);
-  SCB_CLKOUTCLKSEL = SCB_MAINCLKSEL_SOURCE_WDTOSC;
-  SCB_CLKOUTCLKUEN = SCB_CLKOUTCLKUEN_DISABLE;
-  SCB_CLKOUTCLKUEN = SCB_CLKOUTCLKUEN_UPDATE;
-  SCB_CLKOUTCLKDIV = 30;
-}
-
 void badge_init(void) {
-#define INPUT_PIN_CONFIG(spec, mode) do {                              \
-    HOB_SET_PIN_FUNC(spec, GPIO);                                      \
-    gpioSetDir(HOB_PORT(spec), HOB_PIN(spec), gpioDirection_Input);    \
-    gpioSetPullup(&HOB_IOCON(spec), (mode));                           \
+#define INPUT_PIN_CONFIG(spec, mode) do {                               \
+    HOB_SET_PIN_FUNC(spec, GPIO);                                       \
+    gpioSetDir(HOB_PORT(spec), HOB_PIN(spec), gpioDirection_Input);     \
+    gpioSetPullup(&HOB_IOCON(spec), (mode));                            \
   } while(0)
 
-  INPUT_PIN_CONFIG(HOB_BTN_UP    , gpioPullupMode_PullDown);
-  INPUT_PIN_CONFIG(HOB_BTN_RIGHT , gpioPullupMode_PullDown);
-  INPUT_PIN_CONFIG(HOB_BTN_DOWN  , gpioPullupMode_PullDown);
-  INPUT_PIN_CONFIG(HOB_BTN_LEFT  , gpioPullupMode_PullDown);
-  INPUT_PIN_CONFIG(HOB_BTN_CENTER, gpioPullupMode_PullDown);
-  INPUT_PIN_CONFIG(HOB_BTN_A     , gpioPullupMode_PullDown);
-  INPUT_PIN_CONFIG(HOB_BTN_B     , gpioPullupMode_PullDown);
+  INPUT_PIN_CONFIG(HOB_BTN_UP    , gpioPullupMode_PullUp);
+  INPUT_PIN_CONFIG(HOB_BTN_RIGHT , gpioPullupMode_PullUp);
+  INPUT_PIN_CONFIG(HOB_BTN_DOWN  , gpioPullupMode_PullUp);
+  INPUT_PIN_CONFIG(HOB_BTN_LEFT  , gpioPullupMode_PullUp);
+  INPUT_PIN_CONFIG(HOB_BTN_A     , gpioPullupMode_PullUp);
+  INPUT_PIN_CONFIG(HOB_BTN_B     , gpioPullupMode_PullUp);
+
 #undef INPUT_PIN_CONFIG
 
-#define OUTPUT_PIN_CONFIG(spec, value) do {                            \
-    HOB_SET_PIN_FUNC(spec, GPIO);                                      \
-    gpioSetDir(HOB_PORT(spec), HOB_PIN(spec), gpioDirection_Output);   \
-    gpioSetValue(HOB_PORT(spec), HOB_PIN(spec), (value));              \
+#define OUTPUT_PIN_CONFIG(spec, value) do {                             \
+    HOB_SET_PIN_FUNC(spec, GPIO);                                       \
+    gpioSetDir(HOB_PORT(spec), HOB_PIN(spec), gpioDirection_Output);    \
+    gpioSetValue(HOB_PORT(spec), HOB_PIN(spec), (value));               \
   } while(0)
 
   OUTPUT_PIN_CONFIG(HOB_USB_CONNECT , 1);
   OUTPUT_PIN_CONFIG(HOB_LCD_CS      , 1);
   OUTPUT_PIN_CONFIG(HOB_LCD_RST     , 1);
   OUTPUT_PIN_CONFIG(HOB_DATAFLASH_CS, 1);
+  OUTPUT_PIN_CONFIG(HOB_LED_LEFT    , 0);
+  OUTPUT_PIN_CONFIG(HOB_LED_RIGHT   , 0);
+
 #undef OUTPUT_PIN_CONFIG
 
-  badge_init_backlight();
+  badge_backlight_init();
   badge_display_init();
 }
This page took 0.027136 seconds and 4 git commands to generate.