]> rtime.felk.cvut.cz Git - sysless.git/blob - arch/h8300/mach-2633/drivers/periph/sci_regs.h
It is 12 years after C99 standardization - switch to stdint.h and its types.
[sysless.git] / arch / h8300 / mach-2633 / drivers / periph / sci_regs.h
1 /*******************************************************************
2   Components for embedded applications builded for
3   laboratory and medical instruments firmware
4
5   sci_regs.h - UART communication for H2638 microcontroller
6
7    (C) 2005 by Michal Sojka <wentasah@centrum.cz>
8    (C) 2005 by Petr Kovacik <kovacp1@fel.cvut.cz>
9
10  The COLAMI components can be used and copied according to next
11  license alternatives
12    - MPL - Mozilla Public License
13    - GPL - GNU Public License
14
15  *******************************************************************/
16
17 #ifndef _SCI_REGS_H
18 #define _SCI_REGS_H
19
20 #include <stdint.h>
21
22 struct sci_regs {
23     volatile uint8_t  rs232_smr;
24     volatile uint8_t  rs232_brr;
25     volatile uint8_t  rs232_scr;
26     volatile uint8_t  rs232_tdr;
27     volatile uint8_t  rs232_ssr;
28     volatile uint8_t  rs232_rdr;
29     volatile uint8_t  rs232_scmr;
30 };
31
32   
33 #endif /* _SCI_REGS_H */