diff --git a/Documentation/NXGraphicsSubsystem.html b/Documentation/NXGraphicsSubsystem.html
index dd866bd67c5..10985fa376f 100644
--- a/Documentation/NXGraphicsSubsystem.html
+++ b/Documentation/NXGraphicsSubsystem.html
@@ -3464,7 +3464,7 @@ int nxf_convert_32bpp(FAR uint32_t *dest, uint16_t height,
By default, keyboard input is taken from stdin (/dev/console).
If this option is set, then the interfacenxterm_kdbin() is enabled.
That interface may be driven by window callback functions so that keyboard input only goes to the top window.
-
CONFIG__NXTERM_KBDBUFSIZE:
+ CONFIG_NXTERM_KBDBUFSIZE:
CONFIG_NXTERM_NXKBDIN is enabled, then this value may be used to
define the size of the per-window keyboard input buffer. Default: 16
CONFIG_NXTERM_NPOLLWAITERS:
diff --git a/Documentation/NuttxPortingGuide.html b/Documentation/NuttxPortingGuide.html
index 2f6fbaf6015..c0c6eb1fca4 100644
--- a/Documentation/NuttxPortingGuide.html
+++ b/Documentation/NuttxPortingGuide.html
@@ -2257,23 +2257,23 @@ The system can be re-made subsequently by just typing make.
System Timer
In most implementations, system time is provided by a timer interrupt.
- That timer interrupt runs at rate determined by CONFIG_USEC_PER_TICKS (default 10000 microseconds or 100Hz. If CONFIG_SCHED_TICKLESS is selected, the default is 100 microseconds).
- The timer generates an interrupt each CONFIG_USEC_PER_TICKS microseconds and increments a counter called g_system_timer.
- g_system_timer then provides a time-base for calculating up-time and elapsed time intervals in units of CONFIG_USEC_PER_TICKS.
+ That timer interrupt runs at rate determined by CONFIG_USEC_PER_TICK (default 10000 microseconds or 100Hz. If CONFIG_SCHED_TICKLESS is selected, the default is 100 microseconds).
+ The timer generates an interrupt each CONFIG_USEC_PER_TICK microseconds and increments a counter called g_system_timer.
+ g_system_timer then provides a time-base for calculating up-time and elapsed time intervals in units of CONFIG_USEC_PER_TICK.
The range of g_system_timer is, by default, 32-bits.
However, if the MCU supports type long long and CONFIG_SYSTEM_TIME16 is selected,
a 64-bit system timer will be supported instead.
System Timer Accuracy
- On many system, the exact timer interval specified by CONFIG_USEC_PER_TICKS cannot be achieved due to limitations in frequencies or in dividers.
- As a result, the time interval specified by CONFIG_USEC_PER_TICKS may only be approximate and there may be small errors in the apparent up-time time.
+ On many system, the exact timer interval specified by CONFIG_USEC_PER_TICK cannot be achieved due to limitations in frequencies or in dividers.
+ As a result, the time interval specified by CONFIG_USEC_PER_TICK may only be approximate and there may be small errors in the apparent up-time time.
These small errors, however, will accumulate over time and after a long period of time may have an unacceptably large error in the apparent up-time of the MCU.
CONFIG_USEC_PER_TICKS and if there you require accurate up-time for the MCU, then there are measures that you can take:
+ If the timer tick period generated by the hardware is not exactly CONFIG_USEC_PER_TICK and if there you require accurate up-time for the MCU, then there are measures that you can take:
CONFIG_USEC_PER_TICKS to a different value so that an exactly CONFIG_USEC_PER_TICKS can be realized.
+ Perhaps you can adjust CONFIG_USEC_PER_TICK to a different value so that an exactly CONFIG_USEC_PER_TICK can be realized.
make.
Consider this case: The system timer is a count-up timer driven at 32.768KHz.
There are dividers that can be used, but a divider of one yields the highest accuracy.
This counter counts up until the count equals a match value, then a timer interrupt is generated.
- The desire frequency is 100Hz (CONFIG_USEC_PER_TICKS is 10000).
+ The desire frequency is 100Hz (CONFIG_USEC_PER_TICK is 10000).
This exact frequency of 100Hz cannot be obtained in this case. diff --git a/Documentation/NuttxUserGuide.html b/Documentation/NuttxUserGuide.html index 4e028ae0bdd..cdca1f59b19 100644 --- a/Documentation/NuttxUserGuide.html +++ b/Documentation/NuttxUserGuide.html @@ -4729,7 +4729,7 @@ Differences from the POSIX implementation include:
sa_flags in struct sigaction of act input are ignored (all treated like SA_SIGINFO).
- The one exception is if CONFIG_SCHED_CHILDSTATUS is defined;
+ The one exception is if CONFIG_SCHED_CHILD_STATUS is defined;
then SA_NOCLDWAIT is supported but only for SIGCHLD.