repo.or.cz
/
AROS.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Added a test for MUIA_Listview_SelectChange.
[AROS.git]
/
arch
/
arm-efika
/
boot
/
serialdebug.h
blob
b5a0ef05ffdab4fdb657ae83cca591cac59e8087
1
/*
2
* $Id$
3
*
4
* Created on: Nov 8, 2009
5
* Author: misc
6
*/
7
8
#ifndef SERIALDEBUG_H_
9
#define SERIALDEBUG_H_
10
11
#define UART1_BASE_ADDR 0x73fbc000
12
13
#define ONEMS (0xb0/4)
14
#define UBIR (0xa4/4)
15
#define UBMR (0xa8/4)
16
#define UCR2 (0x84/4)
17
18
void
putByte
(
uint8_t
chr
);
19
void
putBytes
(
const char
*
str
);
20
void
waitBusy
();
21
22
#endif
/* SERIALDEBUG_H_ */