FreeCalypso > hg > tcs211-c139
comparison chipsetsw/layer1/dl1/l1.h @ 0:509db1a7b7b8
initial import: leo2moko-r1
author | Space Falcon <falcon@ivan.Harhan.ORG> |
---|---|
date | Mon, 01 Jun 2015 03:24:05 +0000 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:509db1a7b7b8 |
---|---|
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 |