iLLD_TC27xC  1.0
lld_codingRules_if.c
Go to the documentation of this file.
1 /*
2 * $Author: $tklose
3 * $Date: 2014-02-26 09:24:11 GMT$
4 * $Revision: $0.1
5 */
6 /**
7 
8 
9 \page lld_dosanddont_if Standard Interface (/If)
10  \section enum Enum in /1_SrvSw/If shall always define a "undefined" member
11  In case values are not supported by the standard interface, then it can be signals through the "undefined" enum value.
12  \code
13  // SSC operation modes
14  typedef enum
15  {
16  SscIf_Mode_master, // Master mode
17  SscIf_Mode_slave, // Slave mode
18  SscIf_Mode_undefined // Undefined mode
19  } SscIf_Mode;
20  \endcode
21 
22 [\ref lld_dosanddont_commonApis "Previous page"] [\ref doxygenRules "Next page"]
23 
24  */