aboutsummaryrefslogtreecommitdiffstats
path: root/demos
diff options
context:
space:
mode:
Diffstat (limited to 'demos')
-rw-r--r--demos/ARM7-AT91SAM7X-GCC/chconf.h6
-rw-r--r--demos/ARM7-AT91SAM7X-WEB-GCC/chconf.h6
-rw-r--r--demos/ARM7-LPC214x-G++/chconf.h6
-rw-r--r--demos/ARM7-LPC214x-GCC-minimal/chconf.h6
-rw-r--r--demos/ARM7-LPC214x-GCC/chconf.h6
-rw-r--r--demos/ARMCM3-STM32F103-GCC/chconf.h6
-rw-r--r--demos/AVR-AT90CANx-GCC/chconf.h6
-rw-r--r--demos/AVR-ATmega128-GCC/chconf.h6
-rw-r--r--demos/MSP430-MSP430x1611-GCC/chconf.h6
-rw-r--r--demos/Win32-MinGW/chconf.h6
10 files changed, 60 insertions, 0 deletions
diff --git a/demos/ARM7-AT91SAM7X-GCC/chconf.h b/demos/ARM7-AT91SAM7X-GCC/chconf.h
index 57cc9d013..13c3766e4 100644
--- a/demos/ARM7-AT91SAM7X-GCC/chconf.h
+++ b/demos/ARM7-AT91SAM7X-GCC/chconf.h
@@ -147,6 +147,12 @@
* are included in the kernel.*/
#define CH_USE_MEMPOOLS
+/** Configuration option: if specified then the dynamic objects creation APIs
+ * are included in the kernel.
+ * @note requires \p CH_USE_WAITEXIT.
+ */
+#define CH_USE_DYNAMIC
+
/** Configuration option: Frequency of the system timer that drives the system
* ticks. This also defines the system time unit.*/
#define CH_FREQUENCY 1000
diff --git a/demos/ARM7-AT91SAM7X-WEB-GCC/chconf.h b/demos/ARM7-AT91SAM7X-WEB-GCC/chconf.h
index 57cc9d013..13c3766e4 100644
--- a/demos/ARM7-AT91SAM7X-WEB-GCC/chconf.h
+++ b/demos/ARM7-AT91SAM7X-WEB-GCC/chconf.h
@@ -147,6 +147,12 @@
* are included in the kernel.*/
#define CH_USE_MEMPOOLS
+/** Configuration option: if specified then the dynamic objects creation APIs
+ * are included in the kernel.
+ * @note requires \p CH_USE_WAITEXIT.
+ */
+#define CH_USE_DYNAMIC
+
/** Configuration option: Frequency of the system timer that drives the system
* ticks. This also defines the system time unit.*/
#define CH_FREQUENCY 1000
diff --git a/demos/ARM7-LPC214x-G++/chconf.h b/demos/ARM7-LPC214x-G++/chconf.h
index 292074816..3bf626af0 100644
--- a/demos/ARM7-LPC214x-G++/chconf.h
+++ b/demos/ARM7-LPC214x-G++/chconf.h
@@ -147,6 +147,12 @@
* are included in the kernel.*/
#define CH_USE_MEMPOOLS
+/** Configuration option: if specified then the dynamic objects creation APIs
+ * are included in the kernel.
+ * @note requires \p CH_USE_WAITEXIT.
+ */
+#define CH_USE_DYNAMIC
+
/** Configuration option: Frequency of the system timer that drives the system
* ticks. This also defines the system time unit.*/
#define CH_FREQUENCY 1000
diff --git a/demos/ARM7-LPC214x-GCC-minimal/chconf.h b/demos/ARM7-LPC214x-GCC-minimal/chconf.h
index 206272504..da927fe6a 100644
--- a/demos/ARM7-LPC214x-GCC-minimal/chconf.h
+++ b/demos/ARM7-LPC214x-GCC-minimal/chconf.h
@@ -147,6 +147,12 @@
* are included in the kernel.*/
//#define CH_USE_MEMPOOLS
+/** Configuration option: if specified then the dynamic objects creation APIs
+ * are included in the kernel.
+ * @note requires \p CH_USE_WAITEXIT.
+ */
+//#define CH_USE_DYNAMIC
+
/** Configuration option: Frequency of the system timer that drives the system
* ticks. This also defines the system time unit.*/
#define CH_FREQUENCY 1000
diff --git a/demos/ARM7-LPC214x-GCC/chconf.h b/demos/ARM7-LPC214x-GCC/chconf.h
index 57cc9d013..13c3766e4 100644
--- a/demos/ARM7-LPC214x-GCC/chconf.h
+++ b/demos/ARM7-LPC214x-GCC/chconf.h
@@ -147,6 +147,12 @@
* are included in the kernel.*/
#define CH_USE_MEMPOOLS
+/** Configuration option: if specified then the dynamic objects creation APIs
+ * are included in the kernel.
+ * @note requires \p CH_USE_WAITEXIT.
+ */
+#define CH_USE_DYNAMIC
+
/** Configuration option: Frequency of the system timer that drives the system
* ticks. This also defines the system time unit.*/
#define CH_FREQUENCY 1000
diff --git a/demos/ARMCM3-STM32F103-GCC/chconf.h b/demos/ARMCM3-STM32F103-GCC/chconf.h
index 57cc9d013..13c3766e4 100644
--- a/demos/ARMCM3-STM32F103-GCC/chconf.h
+++ b/demos/ARMCM3-STM32F103-GCC/chconf.h
@@ -147,6 +147,12 @@
* are included in the kernel.*/
#define CH_USE_MEMPOOLS
+/** Configuration option: if specified then the dynamic objects creation APIs
+ * are included in the kernel.
+ * @note requires \p CH_USE_WAITEXIT.
+ */
+#define CH_USE_DYNAMIC
+
/** Configuration option: Frequency of the system timer that drives the system
* ticks. This also defines the system time unit.*/
#define CH_FREQUENCY 1000
diff --git a/demos/AVR-AT90CANx-GCC/chconf.h b/demos/AVR-AT90CANx-GCC/chconf.h
index eca46b974..a3c3697af 100644
--- a/demos/AVR-AT90CANx-GCC/chconf.h
+++ b/demos/AVR-AT90CANx-GCC/chconf.h
@@ -147,6 +147,12 @@
* are included in the kernel.*/
#define CH_USE_MEMPOOLS
+/** Configuration option: if specified then the dynamic objects creation APIs
+ * are included in the kernel.
+ * @note requires \p CH_USE_WAITEXIT.
+ */
+#define CH_USE_DYNAMIC
+
/** Configuration option: Frequency of the system timer that drives the system
* ticks. This also defines the system time unit.*/
#define CH_FREQUENCY 1000
diff --git a/demos/AVR-ATmega128-GCC/chconf.h b/demos/AVR-ATmega128-GCC/chconf.h
index c44cd39d5..f3975e8a4 100644
--- a/demos/AVR-ATmega128-GCC/chconf.h
+++ b/demos/AVR-ATmega128-GCC/chconf.h
@@ -147,6 +147,12 @@
* are included in the kernel.*/
#define CH_USE_MEMPOOLS
+/** Configuration option: if specified then the dynamic objects creation APIs
+ * are included in the kernel.
+ * @note requires \p CH_USE_WAITEXIT.
+ */
+#define CH_USE_DYNAMIC
+
/** Configuration option: Frequency of the system timer that drives the system
* ticks. This also defines the system time unit.*/
#define CH_FREQUENCY 1000
diff --git a/demos/MSP430-MSP430x1611-GCC/chconf.h b/demos/MSP430-MSP430x1611-GCC/chconf.h
index 0d1773a6a..40a333f1c 100644
--- a/demos/MSP430-MSP430x1611-GCC/chconf.h
+++ b/demos/MSP430-MSP430x1611-GCC/chconf.h
@@ -148,6 +148,12 @@
* are included in the kernel.*/
#define CH_USE_MEMPOOLS
+/** Configuration option: if specified then the dynamic objects creation APIs
+ * are included in the kernel.
+ * @note requires \p CH_USE_WAITEXIT.
+ */
+#define CH_USE_DYNAMIC
+
/** Configuration option: Frequency of the system timer that drives the system
* ticks. This also defines the system time unit.*/
#define CH_FREQUENCY 1000
diff --git a/demos/Win32-MinGW/chconf.h b/demos/Win32-MinGW/chconf.h
index b52281cfa..c5bbf0410 100644
--- a/demos/Win32-MinGW/chconf.h
+++ b/demos/Win32-MinGW/chconf.h
@@ -148,6 +148,12 @@
* are included in the kernel.*/
#define CH_USE_MEMPOOLS
+/** Configuration option: if specified then the dynamic objects creation APIs
+ * are included in the kernel.
+ * @note requires \p CH_USE_WAITEXIT.
+ */
+#define CH_USE_DYNAMIC
+
/** Configuration option: Frequency of the system timer that drives the system
* ticks. This also defines the system time unit.*/
#define CH_FREQUENCY 1000