Rev 3666 | Rev 3912 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
| Rev 3666 | Rev 3846 | ||
|---|---|---|---|
| Line 25... | Line 25... | ||
| 25 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF |
25 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF |
| 26 | * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
26 | * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 27 | */ |
27 | */ |
| 28 | 28 | ||
| 29 | /** @addtogroup net |
29 | /** @addtogroup net |
| 30 | * @{ |
30 | * @{ |
| 31 | */ |
31 | */ |
| 32 | 32 | ||
| 33 | /** @file |
33 | /** @file |
| - | 34 | * A networking subsystem compilation configuration file. |
|
| 34 | */ |
35 | */ |
| 35 | 36 | ||
| 36 | #ifndef __NET_CONFIGURATION_H__ |
37 | #ifndef __NET_CONFIGURATION_H__ |
| 37 | #define __NET_CONFIGURATION_H__ |
38 | #define __NET_CONFIGURATION_H__ |
| 38 | 39 | ||
| - | 40 | /** An option to activate the self test. |
|
| - | 41 | */ |
|
| 39 | #define NET_SELF_TEST 0 |
42 | #define NET_SELF_TEST 0 |
| - | 43 | ||
| - | 44 | /** An option to activate the measured strings self test. |
|
| - | 45 | * The option NET_SELF_TEST has to be activated. |
|
| - | 46 | * @see measured_strings.h |
|
| - | 47 | */ |
|
| 40 | #define NET_SELF_TEST_MEASURED_STRINGS 1 |
48 | #define NET_SELF_TEST_MEASURED_STRINGS 1 |
| - | 49 | ||
| - | 50 | /** An option to activate the char map self test. |
|
| - | 51 | * The option NET_SELF_TEST has to be activated. |
|
| - | 52 | * @see char_map.h |
|
| - | 53 | */ |
|
| 41 | #define NET_SELF_TEST_CHAR_MAP 0 |
54 | #define NET_SELF_TEST_CHAR_MAP 0 |
| - | 55 | ||
| - | 56 | /** An option to activate the integral map self test. |
|
| - | 57 | * The option NET_SELF_TEST has to be activated. |
|
| - | 58 | * @see int_map.h |
|
| - | 59 | */ |
|
| 42 | #define NET_SELF_TEST_INT_MAP 0 |
60 | #define NET_SELF_TEST_INT_MAP 0 |
| - | 61 | ||
| - | 62 | /** An option to activate the generic field self test. |
|
| - | 63 | * The option NET_SELF_TEST has to be activated. |
|
| - | 64 | * @see generic_field.h |
|
| - | 65 | */ |
|
| 43 | #define NET_SELF_TEST_GENERIC_FIELD 0 |
66 | #define NET_SELF_TEST_GENERIC_FIELD 0 |
| - | 67 | ||
| - | 68 | /** An option to activate the generic char map self test. |
|
| - | 69 | * The option NET_SELF_TEST has to be activated. |
|
| - | 70 | * @see generic_char_map.h |
|
| - | 71 | */ |
|
| 44 | #define NET_SELF_TEST_GENERIC_CHAR_MAP 0 |
72 | #define NET_SELF_TEST_GENERIC_CHAR_MAP 0 |
| 45 | 73 | ||
| 46 | #endif |
74 | #endif |
| 47 | 75 | ||
| 48 | /** @} |
76 | /** @} |