aboutsummaryrefslogtreecommitdiffstats
path: root/demos
diff options
context:
space:
mode:
Diffstat (limited to 'demos')
-rw-r--r--demos/ARM7-AT91SAM7X-GCC/chconf.h5
-rw-r--r--demos/ARM7-AT91SAM7X-WEB-GCC/chconf.h5
-rw-r--r--demos/ARM7-LPC214x-G++/chconf.h5
-rw-r--r--demos/ARM7-LPC214x-GCC-minimal/chconf.h5
-rw-r--r--demos/ARM7-LPC214x-GCC/chconf.h5
-rw-r--r--demos/ARMCM3-STM32F103-GCC/chconf.h5
-rw-r--r--demos/AVR-AT90CANx-GCC/chconf.h5
-rw-r--r--demos/AVR-ATmega128-GCC/chconf.h5
-rw-r--r--demos/MSP430-MSP430x1611-GCC/chconf.h5
-rw-r--r--demos/Win32-MinGW/chconf.h5
10 files changed, 50 insertions, 0 deletions
diff --git a/demos/ARM7-AT91SAM7X-GCC/chconf.h b/demos/ARM7-AT91SAM7X-GCC/chconf.h
index c1b6d8c5a..4c42fbfad 100644
--- a/demos/ARM7-AT91SAM7X-GCC/chconf.h
+++ b/demos/ARM7-AT91SAM7X-GCC/chconf.h
@@ -51,6 +51,11 @@
* in the kernel.*/
#define CH_USE_SEMAPHORES
+/** Configuration option: If enabled then the threads are enqueued on semaphores
+ * by priority rather than FIFO order.
+ * @note requires @p CH_USE_SEMAPHORES.*/
+//#define CH_USE_SEMAPHORES_PRIORITY
+
/** Configuration option: if specified then the Semaphores atomic Signal+Wait
* APIs are included in the kernel.*/
#define CH_USE_SEMSW
diff --git a/demos/ARM7-AT91SAM7X-WEB-GCC/chconf.h b/demos/ARM7-AT91SAM7X-WEB-GCC/chconf.h
index cc2870abd..ff4a00298 100644
--- a/demos/ARM7-AT91SAM7X-WEB-GCC/chconf.h
+++ b/demos/ARM7-AT91SAM7X-WEB-GCC/chconf.h
@@ -51,6 +51,11 @@
* in the kernel.*/
#define CH_USE_SEMAPHORES
+/** Configuration option: If enabled then the threads are enqueued on semaphores
+ * by priority rather than FIFO order.
+ * @note requires @p CH_USE_SEMAPHORES.*/
+//#define CH_USE_SEMAPHORES_PRIORITY
+
/** Configuration option: if specified then the Semaphores atomic Signal+Wait
* APIs are included in the kernel.*/
#define CH_USE_SEMSW
diff --git a/demos/ARM7-LPC214x-G++/chconf.h b/demos/ARM7-LPC214x-G++/chconf.h
index 73323e4cf..c22e9b542 100644
--- a/demos/ARM7-LPC214x-G++/chconf.h
+++ b/demos/ARM7-LPC214x-G++/chconf.h
@@ -51,6 +51,11 @@
* in the kernel.*/
#define CH_USE_SEMAPHORES
+/** Configuration option: If enabled then the threads are enqueued on semaphores
+ * by priority rather than FIFO order.
+ * @note requires @p CH_USE_SEMAPHORES.*/
+//#define CH_USE_SEMAPHORES_PRIORITY
+
/** Configuration option: if specified then the Semaphores atomic Signal+Wait
* APIs are included in the kernel.*/
#define CH_USE_SEMSW
diff --git a/demos/ARM7-LPC214x-GCC-minimal/chconf.h b/demos/ARM7-LPC214x-GCC-minimal/chconf.h
index 876afc52a..61484aec7 100644
--- a/demos/ARM7-LPC214x-GCC-minimal/chconf.h
+++ b/demos/ARM7-LPC214x-GCC-minimal/chconf.h
@@ -51,6 +51,11 @@
* in the kernel.*/
#define CH_USE_SEMAPHORES
+/** Configuration option: If enabled then the threads are enqueued on semaphores
+ * by priority rather than FIFO order.
+ * @note requires @p CH_USE_SEMAPHORES.*/
+//#define CH_USE_SEMAPHORES_PRIORITY
+
/** Configuration option: if specified then the Semaphores atomic Signal+Wait
* APIs are included in the kernel.*/
//#define CH_USE_SEMSW
diff --git a/demos/ARM7-LPC214x-GCC/chconf.h b/demos/ARM7-LPC214x-GCC/chconf.h
index cc2870abd..ff4a00298 100644
--- a/demos/ARM7-LPC214x-GCC/chconf.h
+++ b/demos/ARM7-LPC214x-GCC/chconf.h
@@ -51,6 +51,11 @@
* in the kernel.*/
#define CH_USE_SEMAPHORES
+/** Configuration option: If enabled then the threads are enqueued on semaphores
+ * by priority rather than FIFO order.
+ * @note requires @p CH_USE_SEMAPHORES.*/
+//#define CH_USE_SEMAPHORES_PRIORITY
+
/** Configuration option: if specified then the Semaphores atomic Signal+Wait
* APIs are included in the kernel.*/
#define CH_USE_SEMSW
diff --git a/demos/ARMCM3-STM32F103-GCC/chconf.h b/demos/ARMCM3-STM32F103-GCC/chconf.h
index cc2870abd..ff4a00298 100644
--- a/demos/ARMCM3-STM32F103-GCC/chconf.h
+++ b/demos/ARMCM3-STM32F103-GCC/chconf.h
@@ -51,6 +51,11 @@
* in the kernel.*/
#define CH_USE_SEMAPHORES
+/** Configuration option: If enabled then the threads are enqueued on semaphores
+ * by priority rather than FIFO order.
+ * @note requires @p CH_USE_SEMAPHORES.*/
+//#define CH_USE_SEMAPHORES_PRIORITY
+
/** Configuration option: if specified then the Semaphores atomic Signal+Wait
* APIs are included in the kernel.*/
#define CH_USE_SEMSW
diff --git a/demos/AVR-AT90CANx-GCC/chconf.h b/demos/AVR-AT90CANx-GCC/chconf.h
index 4900dd240..2cf2f8507 100644
--- a/demos/AVR-AT90CANx-GCC/chconf.h
+++ b/demos/AVR-AT90CANx-GCC/chconf.h
@@ -42,6 +42,11 @@
* in the kernel.*/
#define CH_USE_SEMAPHORES
+/** Configuration option: If enabled then the threads are enqueued on semaphores
+ * by priority rather than FIFO order.
+ * @note requires @p CH_USE_SEMAPHORES.*/
+//#define CH_USE_SEMAPHORES_PRIORITY
+
/** Configuration option: if specified then the Semaphores atomic Signal+Wait
* APIs are included in the kernel.*/
#define CH_USE_SEMSW
diff --git a/demos/AVR-ATmega128-GCC/chconf.h b/demos/AVR-ATmega128-GCC/chconf.h
index 4e9abec89..2de244954 100644
--- a/demos/AVR-ATmega128-GCC/chconf.h
+++ b/demos/AVR-ATmega128-GCC/chconf.h
@@ -51,6 +51,11 @@
* in the kernel.*/
#define CH_USE_SEMAPHORES
+/** Configuration option: If enabled then the threads are enqueued on semaphores
+ * by priority rather than FIFO order.
+ * @note requires @p CH_USE_SEMAPHORES.*/
+//#define CH_USE_SEMAPHORES_PRIORITY
+
/** Configuration option: if specified then the Semaphores atomic Signal+Wait
* APIs are included in the kernel.*/
#define CH_USE_SEMSW
diff --git a/demos/MSP430-MSP430x1611-GCC/chconf.h b/demos/MSP430-MSP430x1611-GCC/chconf.h
index 10be65000..0fb97ecb7 100644
--- a/demos/MSP430-MSP430x1611-GCC/chconf.h
+++ b/demos/MSP430-MSP430x1611-GCC/chconf.h
@@ -56,6 +56,11 @@
* in the kernel.*/
#define CH_USE_SEMAPHORES
+/** Configuration option: If enabled then the threads are enqueued on semaphores
+ * by priority rather than FIFO order.
+ * @note requires @p CH_USE_SEMAPHORES.*/
+//#define CH_USE_SEMAPHORES_PRIORITY
+
/** Configuration option: if specified then the Semaphores atomic Signal+Wait
* APIs are included in the kernel.*/
#define CH_USE_SEMSW
diff --git a/demos/Win32-MinGW/chconf.h b/demos/Win32-MinGW/chconf.h
index 07d741e99..a10e43b7d 100644
--- a/demos/Win32-MinGW/chconf.h
+++ b/demos/Win32-MinGW/chconf.h
@@ -51,6 +51,11 @@
* in the kernel.*/
#define CH_USE_SEMAPHORES
+/** Configuration option: If enabled then the threads are enqueued on semaphores
+ * by priority rather than FIFO order.
+ * @note requires @p CH_USE_SEMAPHORES.*/
+//#define CH_USE_SEMAPHORES_PRIORITY
+
/** Configuration option: if specified then the Semaphores atomic Signal+Wait
* APIs are included in the kernel.*/
#define CH_USE_SEMSW