comparison src/cs/drivers/drv_core/uart/traceswitch.h @ 0:945cf7f506b2

src/cs: chipsetsw import from tcs211-fcmodem binary blobs and LCD demo files have been excluded, all line endings are LF only
author Mychaela Falconia <falcon@freecalypso.org>
date Sun, 25 Sep 2016 22:50:11 +0000
parents
children beff67c568cf
comparison
equal deleted inserted replaced
-1:000000000000 0:945cf7f506b2
1 /*******************************************************************************
2 *
3 * TRACESWITCH.H
4 *
5 * This module defines constants used by UART and USART trace drivers.
6 *
7 * (C) Texas Instruments 1999
8 *
9 ******************************************************************************/
10
11 #ifndef __TRACESWITCH_H__
12 #define __TRACESWITCH_H__
13
14 typedef enum {
15 TR_BAUD_406250,
16 TR_BAUD_115200,
17 TR_BAUD_57600,
18 TR_BAUD_38400,
19 TR_BAUD_33900,
20 TR_BAUD_28800,
21 TR_BAUD_19200,
22 TR_BAUD_14400,
23 TR_BAUD_9600,
24 TR_BAUD_4800,
25 TR_BAUD_2400,
26 TR_BAUD_1200,
27 TR_BAUD_600,
28 TR_BAUD_300,
29 TR_BAUD_150,
30 TR_BAUD_75
31 } T_tr_Baudrate;
32
33 #endif /* __TRACESWITCH_H__ */