Report S2EVENT_CONNECT when a new SSID is selected.
[AROS.git] / arch / arm-efika / boot / serialdebug.h
blob551de46f83c9eecea24e308f7f83728ead31c478
1 /*
2 * $Id:$
4 * Created on: Nov 8, 2009
5 * Author: misc
6 */
8 #ifndef SERIALDEBUG_H_
9 #define SERIALDEBUG_H_
11 #define UART1_BASE_ADDR 0x73fbc000
13 #define ONEMS (0xb0/4)
14 #define UBIR (0xa4/4)
15 #define UBMR (0xa8/4)
16 #define UCR2 (0x84/4)
18 void putByte(uint8_t chr);
19 void putBytes(const char *str);
20 void waitBusy();
22 #endif /* SERIALDEBUG_H_ */