FreeCalypso > hg > freecalypso-sw
comparison gsm-fw/services/dar/dar_error_hdlr_i.h @ 305:4dccc9d3305f
gsm-fw: checking in DAR from Leonardo source
author | Michael Spacefalcon <msokolov@ivan.Harhan.ORG> |
---|---|
date | Sun, 16 Mar 2014 05:48:58 +0000 |
parents | |
children | 81bee6125882 |
comparison
equal
deleted
inserted
replaced
304:e0ca3ca46a06 | 305:4dccc9d3305f |
---|---|
1 /****************************************************************************/ | |
2 /* */ | |
3 /* File Name: dar_error_hdlr_i.h */ | |
4 /* */ | |
5 /* Purpose: This file contains routines used to report unrecoverable */ | |
6 /* memory errors that might occur. */ | |
7 /* */ | |
8 /* Version 0.1 */ | |
9 /* */ | |
10 /* Date Modification */ | |
11 /* ---------------------------------------------------------------------- */ | |
12 /* 27 September 2001 Create */ | |
13 /* */ | |
14 /* Author Stephanie Gerthoux */ | |
15 /* */ | |
16 /* (C) Copyright 2001 by Texas Instruments Incorporated, All Rights Reserved*/ | |
17 /****************************************************************************/ | |
18 | |
19 #include "rv/rv_defined_swe.h" | |
20 #ifdef RVM_DAR_SWE | |
21 #ifndef _DAR_ERROR_HDLR_I_H | |
22 #define _DAR_ERROR_HDLR_I_H | |
23 | |
24 /* Id of the error trace */ | |
25 #define DAR_ENTITY_NOT_START (0) | |
26 #define DAR_ENTITY_NO_MEMORY (1) | |
27 #define DAR_ERROR_STOP_EVENT (2) | |
28 #define DAR_ERROR_START_EVENT (3) | |
29 #define DAR_ENTITY_BAD_PARAMETER (4) | |
30 #define DAR_ENTITY_BAD_MESSAGE (5) | |
31 #define DAR_ENTITY_FILE_ERROR (7) | |
32 #define DAR_ENTITY_FILE_NO_SAVED (8) | |
33 #define DAR_ENTITY_FILE_NO_CLOSE (9) | |
34 | |
35 void dar_error_trace(UINT8 error_id); | |
36 void dar_ffs_error_trace(UINT8 error_id); | |
37 | |
38 #endif | |
39 #endif /* #ifdef RVM_DAR_SWE */ |