summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGregory Nutt <gnutt@nuttx.org>2014-08-12 10:01:12 -0600
committerGregory Nutt <gnutt@nuttx.org>2014-08-12 10:01:12 -0600
commit753d1b43c61a609e099f3055060ce116c96056d9 (patch)
tree07c78d0eefa2958dea4a73e6b9817109b8388275
parent6324ad2464f47db96b72311aa2f24a4ee8c89a87 (diff)
downloadnuttx-753d1b43c61a609e099f3055060ce116c96056d9.tar.gz
nuttx-753d1b43c61a609e099f3055060ce116c96056d9.tar.bz2
nuttx-753d1b43c61a609e099f3055060ce116c96056d9.zip
Update README files
-rw-r--r--nuttx/configs/sama5d3-xplained/README.txt4
-rw-r--r--nuttx/configs/sama5d3x-ek/README.txt6
-rw-r--r--nuttx/configs/sama5d4-ek/README.txt4
3 files changed, 10 insertions, 4 deletions
diff --git a/nuttx/configs/sama5d3-xplained/README.txt b/nuttx/configs/sama5d3-xplained/README.txt
index 85342306d..570821c81 100644
--- a/nuttx/configs/sama5d3-xplained/README.txt
+++ b/nuttx/configs/sama5d3-xplained/README.txt
@@ -2378,6 +2378,7 @@ Tickless OS
RTOS Features -> Clocks and Timers
CONFIG_SCHED_TICKLESS=y : Configures the RTOS in tickless mode
+ CONFIG_SCHED_TICKLESS_ALARM=n : (option not implemented)
System Type -> SAMA5 Peripheral Support
CONFIG_SAMA5_TC0=y : Enable TC0 (TC channels 0-3
@@ -2410,7 +2411,8 @@ Tickless OS
from 0xffffffff to zero). So we could potentially just set the compare
at the number of ticks you want PLUS the current value of timer. Then
you could have both with a single timer: An interval timer and a free-
- running counter with the same timer!
+ running counter with the same timer! In this case, you would want to
+ to set CONFIG_SCHED_TICKLESS_ALARM in the NuttX configuration.
Patches are welcome!
diff --git a/nuttx/configs/sama5d3x-ek/README.txt b/nuttx/configs/sama5d3x-ek/README.txt
index 3b4de458f..8f1978b67 100644
--- a/nuttx/configs/sama5d3x-ek/README.txt
+++ b/nuttx/configs/sama5d3x-ek/README.txt
@@ -2694,6 +2694,7 @@ Tickless OS
RTOS Features -> Clocks and Timers
CONFIG_SCHED_TICKLESS=y : Configures the RTOS in tickless mode
+ CONFIG_SCHED_TICKLESS_ALARM=n : (option not implemented)
System Type -> SAMA5 Peripheral Support
CONFIG_SAMA5_TC0=y : Enable TC0 (TC channels 0-3
@@ -2723,10 +2724,11 @@ Tickless OS
32-bit counters with the capability to generate a compare interrupt when
the timer matches a compare value but also to continue counting without
stopping (giving another, different interrupt when the timer rolls over
- from 0xffffffff to zero). So we could potentially just set the compare
+ from 0xffffffff to zero). So we could potentially used the just set the compare
at the number of ticks you want PLUS the current value of timer. Then
you could have both with a single timer: An interval timer and a free-
- running counter with the same timer!
+ running counter with the same timer! In this case, you would want to
+ to set CONFIG_SCHED_TICKLESS_ALARM in the NuttX configuration.
Patches are welcome!
diff --git a/nuttx/configs/sama5d4-ek/README.txt b/nuttx/configs/sama5d4-ek/README.txt
index 2ee7d8b7b..94371e09f 100644
--- a/nuttx/configs/sama5d4-ek/README.txt
+++ b/nuttx/configs/sama5d4-ek/README.txt
@@ -3158,6 +3158,7 @@ Tickless OS
RTOS Features -> Clocks and Timers
CONFIG_SCHED_TICKLESS=y : Configures the RTOS in tickless mode
+ CONFIG_SCHED_TICKLESS_ALARM=n : (option not implemented)
System Type -> SAMA5 Peripheral Support
CONFIG_SAMA5_TC0=y : Enable TC0 (TC channels 0-3
@@ -3196,7 +3197,8 @@ Tickless OS
from 0xffffffff to zero). So we could potentially just set the compare
at the number of ticks you want PLUS the current value of timer. Then
you could have both with a single timer: An interval timer and a free-
- running counter with the same timer!
+ running counter with the same timer! In this case, you would want to
+ to set CONFIG_SCHED_TICKLESS_ALARM in the NuttX configuration.
Patches are welcome!