From e0bc7fae75b59324764abf4680a065caddcc70c2 Mon Sep 17 00:00:00 2001 From: Daniel Friesel Date: Sun, 31 Jan 2016 18:55:17 +0100 Subject: add rocket.initialize() function for initial MCU and peripheral setup --- src/main.cc | 19 +------------------ 1 file changed, 1 insertion(+), 18 deletions(-) (limited to 'src/main.cc') diff --git a/src/main.cc b/src/main.cc index 5fa0c0d..5afa6d7 100644 --- a/src/main.cc +++ b/src/main.cc @@ -1,7 +1,3 @@ -#include -#include -#include -#include #include #include "display.h" @@ -27,23 +23,10 @@ int main (void) test.length = 2*8; test.data = anim_data; - // disable ADC to save power - PRR |= _BV(PRADC); - - // dito - wdt_disable(); - - // Enable pull-ups on PC3 and PC7 (button pins) - PORTC |= _BV(PC3) | _BV(PC7); + rocket.initialize(); display.show(&ohai); - display.enable(); - modem.enable(); - storage.enable(); - - sei(); - while (1) { // nothing to do here, go to idle to save power SMCR = _BV(SE); -- cgit v1.2.3