chronos cleanup

This commit is contained in:
Ludwig Ortmann 2013-12-19 12:21:34 +01:00
parent b674183e15
commit 680f778fc4
6 changed files with 8 additions and 1 deletions

View File

@ -1,7 +1,9 @@
#include <stdint.h>
#include "board.h"
#include "cpu.h"
#include "irq.h"
#include "debug.h"
#include "display.h"
#include "display_putchar.h"

View File

@ -1,5 +1,6 @@
#include <stdint.h>
#include <cc430f6137.h>
#include "cc430-adc.h"
uint32_t battery_get_voltage(void)

View File

@ -1,5 +1,6 @@
#include <stdint.h>
#include <cc430f6137.h>
#include "buzzer.h"
#include "hwtimer.h"

View File

@ -44,6 +44,7 @@
/* driver */
#include <cc430f6137.h>
#include "display.h"

View File

@ -40,6 +40,7 @@
/* Include section */
#include <stdint.h>
#include <cc430f6137.h>
#include "display.h"
/* ************************************************************************************************* */

View File

@ -1,8 +1,9 @@
#include <stdio.h>
#include <string.h>
#include <ctype.h>
#include "display.h"
extern int toupper(int c);
extern void (*_putchar)(int c);
static char display_buf[11];