JVM test

Dependencies:   mbed

Committer:
lynxeyed_atsu
Date:
Sat Aug 24 07:00:51 2013 +0000
Revision:
5:047542b65d00
Child:
6:b9d0d96b052f
KL25Z JVM test

Who changed what in which revision?

UserRevisionLine numberNew contents of line
lynxeyed_atsu 5:047542b65d00 1 #ifndef __DEVICE_DEPEND_H__
lynxeyed_atsu 5:047542b65d00 2 #define __DEVICE_DEPEND_H__
lynxeyed_atsu 5:047542b65d00 3
lynxeyed_atsu 5:047542b65d00 4 #include "mbed.h"
lynxeyed_atsu 5:047542b65d00 5
lynxeyed_atsu 5:047542b65d00 6 // functions
lynxeyed_atsu 5:047542b65d00 7 void hardware_init(void);
lynxeyed_atsu 5:047542b65d00 8 void uart_init(int baud_rate);
lynxeyed_atsu 5:047542b65d00 9 void uart_print(char *str);
lynxeyed_atsu 5:047542b65d00 10 int uart_read(void);
lynxeyed_atsu 5:047542b65d00 11 int time_millis(void);
lynxeyed_atsu 5:047542b65d00 12 void port_write(int port, int bit, int value);
lynxeyed_atsu 5:047542b65d00 13
lynxeyed_atsu 5:047542b65d00 14 void setup_systick(void);
lynxeyed_atsu 5:047542b65d00 15
lynxeyed_atsu 5:047542b65d00 16 #endif
lynxeyed_atsu 5:047542b65d00 17