1 |
588 |
jeremybenn |
/** ###################################################################
|
2 |
|
|
** THIS BEAN MODULE IS GENERATED BY THE TOOL. DO NOT MODIFY IT.
|
3 |
|
|
** Filename : PE_Error.H
|
4 |
|
|
** Project : RTOSDemo
|
5 |
|
|
** Processor : MC9S12DP256BCPV
|
6 |
|
|
** Beantype : PE_Error
|
7 |
|
|
** Version : Driver 01.00
|
8 |
|
|
** Compiler : Metrowerks HC12 C Compiler
|
9 |
|
|
** Date/Time : 13/06/2005, 20:14
|
10 |
|
|
** Abstract :
|
11 |
|
|
** This bean "PE_Error" contains internal definitions
|
12 |
|
|
** of the error constants.
|
13 |
|
|
** Settings :
|
14 |
|
|
** Contents :
|
15 |
|
|
** No public methods
|
16 |
|
|
**
|
17 |
|
|
** (c) Copyright UNIS, spol. s r.o. 1997-2002
|
18 |
|
|
** UNIS, spol. s r.o.
|
19 |
|
|
** Jundrovska 33
|
20 |
|
|
** 624 00 Brno
|
21 |
|
|
** Czech Republic
|
22 |
|
|
** http : www.processorexpert.com
|
23 |
|
|
** mail : info@processorexpert.com
|
24 |
|
|
** ###################################################################*/
|
25 |
|
|
|
26 |
|
|
#ifndef __PE_Error_H
|
27 |
|
|
#define __PE_Error_H
|
28 |
|
|
|
29 |
|
|
#define ERR_OK 0 /* OK */
|
30 |
|
|
#define ERR_SPEED 1 /* This device does not work in the active speed mode. */
|
31 |
|
|
#define ERR_RANGE 2 /* Parameter out of range. */
|
32 |
|
|
#define ERR_VALUE 3 /* Parameter of incorrect value. */
|
33 |
|
|
#define ERR_OVERFLOW 4 /* Timer overflow. */
|
34 |
|
|
#define ERR_MATH 5 /* Overflow during evaluation. */
|
35 |
|
|
#define ERR_ENABLED 6 /* Device is enabled. */
|
36 |
|
|
#define ERR_DISABLED 7 /* Device is disabled. */
|
37 |
|
|
#define ERR_BUSY 8 /* Device is busy. */
|
38 |
|
|
#define ERR_NOTAVAIL 9 /* Requested value or method not available. */
|
39 |
|
|
#define ERR_RXEMPTY 10 /* No data in receiver. */
|
40 |
|
|
#define ERR_TXFULL 11 /* Transmitter is full. */
|
41 |
|
|
#define ERR_BUSOFF 12 /* Bus not available. */
|
42 |
|
|
#define ERR_OVERRUN 13 /* Overrun error is detected. */
|
43 |
|
|
#define ERR_FRAMING 14 /* Framing error is detected. */
|
44 |
|
|
#define ERR_PARITY 15 /* Parity error is detected. */
|
45 |
|
|
#define ERR_NOISE 16 /* Noise error is detected. */
|
46 |
|
|
#define ERR_IDLE 17 /* Idle error is detectes. */
|
47 |
|
|
#define ERR_FAULT 18 /* Fault error is detected. */
|
48 |
|
|
#define ERR_BREAK 19 /* Break char is received during communication. */
|
49 |
|
|
#define ERR_CRC 20 /* CRC error is detected. */
|
50 |
|
|
#define ERR_ARBITR 21 /* A node losts arbitration. This error occurs if two nodes start transmission at the same time. */
|
51 |
|
|
#define ERR_PROTECT 22 /* Protection error is detected. */
|
52 |
|
|
|
53 |
|
|
#endif __PE_Error_H
|