comparison src/cs/layer1/dl1/l1.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
comparison
equal deleted inserted replaced
-1:000000000000 0:945cf7f506b2
1 /*
2 +--------------------------------------------------------------------+
3 | PROJECT : GSM-PS (6147) SOURCE : L1.H |
4 | AUTHOR : CONDAT GmbH (nn) VERSION: 01.00-01 |
5 | CREATED : 03.06.96 STATE : code |
6 +--------------------------------------------------------------------+
7
8 MODULE : L1
9
10 PURPOSE : Definitions for the Protocol Stack Entity
11 Layer 1
12
13
14 */
15
16 #ifndef L1_H
17 #define L1_H
18
19 /*==== CONSTANTS ==================================================*/
20 #define DEBUG_PORT (2)
21 #define DUART_PORT (DEBUG_PORT - 1)
22 #define DEBUG_STACK_SIZE (1024)
23 #define LOG_STACK_SIZE (1024)
24 #define MONITOR_STACK_SIZE (1024)
25
26 /*==== TYPES ======================================================*/
27 /*==== EXPORT =====================================================*/
28 void l1_create_ISR (void);
29 void dl1_create_debug_task (void);
30
31 void dt_assert(int _expr, char *s);
32 void dt_error_message(char *s);
33 void l1a_task(unsigned arcg, void *argv);
34 unsigned get_arm_version (void);
35 unsigned get_dsp_version (void);
36
37
38 #endif
39
40