summaryrefslogtreecommitdiff
path: root/cesar/host/config.h
diff options
context:
space:
mode:
Diffstat (limited to 'cesar/host/config.h')
-rw-r--r--cesar/host/config.h31
1 files changed, 31 insertions, 0 deletions
diff --git a/cesar/host/config.h b/cesar/host/config.h
new file mode 100644
index 0000000000..029683db7c
--- /dev/null
+++ b/cesar/host/config.h
@@ -0,0 +1,31 @@
+#ifndef CONFIG_H_
+#define CONFIG_H_
+
+/* Cesar project {{{
+ *
+ * Copyright (C) 2007 Spidcom
+ *
+ * <<<Licence>>>
+ *
+ * }}} */
+
+ /**
+ * \file config.h
+ * \brief The station configuration defines for fulminata.
+ * \ingroup host
+ *
+ * This file describe the configuration of fulminata station
+ *
+ * \todo
+ */
+
+#include "config/host/assert.h"
+
+/* strong assert validation */
+#if CONFIG_HOST_ASSERT
+#ifndef UNIT_TEST
+#define ENABLE_DBG_ASSERT
+#endif /* UNIT_TEST */
+#endif /* CONFIG_HOST_ASSERT */
+
+#endif /* CONFIG_H_ */