comparison src/g23m-aci/uart/uart_kerf.h @ 1:d393cd9bb723

src/g23m-*: initial import from Magnetite
author Mychaela Falconia <falcon@freecalypso.org>
date Sun, 15 Jul 2018 04:40:46 +0000
parents
children
comparison
equal deleted inserted replaced
0:b6a5e36de839 1:d393cd9bb723
1 /*
2 +-----------------------------------------------------------------------------
3 | Project :
4 | Modul :
5 +-----------------------------------------------------------------------------
6 | Copyright 2002 Texas Instruments Berlin, AG
7 | All rights reserved.
8 |
9 | This file is confidential and a trade secret of Texas
10 | Instruments Berlin, AG
11 | The receipt of or possession of this file does not convey
12 | any rights to reproduce or disclose its contents or to
13 | manufacture, use, or sell anything it may describe, in
14 | whole, or in part, without the specific written consent of
15 | Texas Instruments Berlin, AG.
16 +-----------------------------------------------------------------------------
17 | Purpose : Definitions for uart_kerf.c
18 +-----------------------------------------------------------------------------
19 */
20
21 #ifndef UART_KERF_H
22 #define UART_KERF_H
23
24
25 EXTERN void ker_setupUart (void);
26
27 EXTERN void ker_init (void);
28
29 EXTERN void ker_analyze_frame_info_command (ULONG* forward, T_desc2* frame);
30
31 EXTERN void ker_analyze_frame_info_response (ULONG* forward, T_desc2* frame);
32
33 EXTERN void ker_mux_dlc_release (UBYTE dlc_instance);
34
35 EXTERN void ker_mux_close_down (void);
36
37 EXTERN void ker_mux_send_frame (T_desc2* frame);
38
39 EXTERN void ker_mux_send_command_frame (UBYTE dlc_instance, T_desc2* frame);
40
41 EXTERN void ker_mux_send_line_states(UBYTE dlc_instance);
42
43 EXTERN void ker_mux_send_close_down(void);
44
45 EXTERN void ker_send_disc_frame (UBYTE dlci);
46
47 EXTERN void ker_receive_sabm_frame(ULONG* forward, T_desc2* frame);
48
49 EXTERN void ker_receive_ua_frame(ULONG* forward, T_desc2* frame);
50
51 EXTERN void ker_receive_dm_frame(ULONG* forward, T_desc2* frame);
52
53 EXTERN void ker_receive_disc_frame(ULONG* forward, T_desc2* frame);
54
55 EXTERN void ker_receive_uih_control_frame(ULONG* forward, T_desc2* frame);
56
57 EXTERN void ker_receive_uih_data_frame(ULONG* forward, T_desc2* frame);
58
59 #endif /* !UART_KERF_H */
60