Fix lots of occurrences of 'the the', 'the there', 'the these', 'the then', 'the they.

This commit is contained in:
Gregory Nutt
2017-05-11 13:35:56 -06:00
parent ba12817f9c
commit 0de294a586
342 changed files with 438 additions and 438 deletions
+4 -4
View File
@@ -10770,8 +10770,8 @@
serial device servers. From Anton D. Kachalov (2015-07-29). serial device servers. From Anton D. Kachalov (2015-07-29).
* drivers/net/ and include/nuttx/net: Add support for a Faraday * drivers/net/ and include/nuttx/net: Add support for a Faraday
* FTMAC100 Ethernet MAC Driver. From Anton D. Kachalov (2015-07-29). * FTMAC100 Ethernet MAC Driver. From Anton D. Kachalov (2015-07-29).
* 16550 UART Driver: Add a configuration option to indicate the the * 16550 UART Driver: Add a configuration option to indicate the
THR empty bit is inverted. This is the the case for the moxART SoC. THR empty bit is inverted. This is the case for the moxART SoC.
Based comments from Anton D. Kachalov (2015-07-29). Based comments from Anton D. Kachalov (2015-07-29).
* STM32 F4: Add DMA support to the ADC driver for STM32 F4. From * STM32 F4: Add DMA support to the ADC driver for STM32 F4. From
Max Kriegler (2015-07-30). Max Kriegler (2015-07-30).
@@ -13129,7 +13129,7 @@
protect code. protect code.
So this change adds locking (via enter_critical section) to wdog So this change adds locking (via enter_critical section) to wdog
expiration logic for the the case if the SMP configuration expiration logic for the case if the SMP configuration
(2016-11-18). (2016-11-18).
* SAM3/4: Add delay between setting and clearing the endpoint RESET bit * SAM3/4: Add delay between setting and clearing the endpoint RESET bit
in sam_ep_resume(). We need to add a delay between setting and in sam_ep_resume(). We need to add a delay between setting and
@@ -13248,7 +13248,7 @@
select to log only notes from certain CPUs (2016-11-28). select to log only notes from certain CPUs (2016-11-28).
* Misoc LM3: Add Misoc Ethernet driver. Integrate network support into * Misoc LM3: Add Misoc Ethernet driver. Integrate network support into
configs/misoc/hello. Remove configs/misoc/include/generated directory. configs/misoc/hello. Remove configs/misoc/include/generated directory.
I suppose the the intent now is that this is a symbolic link? DANGER! I suppose the intent now is that this is a symbolic link? DANGER!
This means that you cannot compile this code with first generating This means that you cannot compile this code with first generating
these files a providing a symbolic link to this location! From Ramtin these files a providing a symbolic link to this location! From Ramtin
Amin (2016-11-28). Amin (2016-11-28).
+1 -1
View File
@@ -287,7 +287,7 @@ This is a test
<p> <p>
Setting up the server will be done in two steps: Setting up the server will be done in two steps:
First, setting up the configuration file for NFS, and then starting the NFS services. First, setting up the configuration file for NFS, and then starting the NFS services.
But first, you need to install the nfs server on Ubuntu with the these two commands: But first, you need to install the nfs server on Ubuntu with these two commands:
</p> </p>
<ul><pre> <ul><pre>
# sudo apt-get install nfs-common</FONT> # sudo apt-get install nfs-common</FONT>
+1 -1
View File
@@ -381,7 +381,7 @@ EXEPATH_HANDLE exepath_init(void);
<ul> <ul>
On success, <code>exepath_init()</code> return a non-<code>NULL</code>, opaque handle that may subsequently be used in calls to <code>exepath_next()</code> and <code>exepath_release()</code>. On success, <code>exepath_init()</code> return a non-<code>NULL</code>, opaque handle that may subsequently be used in calls to <code>exepath_next()</code> and <code>exepath_release()</code>.
On error, a <code>NULL</code> handle value will be returned. On error, a <code>NULL</code> handle value will be returned.
The most likely cause of an error would be that the there is no value associated with the <code>PATH</code> variable. The most likely cause of an error would be that there is no value associated with the <code>PATH</code> variable.
</ul> </ul>
<h3>2.3.9 <a name="exepath_next"><code>exepath_next()</code></a></h3> <h3>2.3.9 <a name="exepath_next"><code>exepath_next()</code></a></h3>
+4 -4
View File
@@ -2291,7 +2291,7 @@ config ARCH_SIM
In the default configuration where system time is provided by a periodic timer interrupt, the default system timer is configure the timer for 100Hz or <code>CONFIG_USEC_PER_TICK=10000</code>. If <code>CONFIG_SCHED_TICKLESS</code> is selected, then there are no system timer interrupt. In this case, <code>CONFIG_USEC_PER_TICK</code> does not control any timer rates. Rather, it only determines the resolution of time reported by <code>clock_systimer()</code> and the resolution of times that can be set for certain delays including watchdog timers and delayed work. In the default configuration where system time is provided by a periodic timer interrupt, the default system timer is configure the timer for 100Hz or <code>CONFIG_USEC_PER_TICK=10000</code>. If <code>CONFIG_SCHED_TICKLESS</code> is selected, then there are no system timer interrupt. In this case, <code>CONFIG_USEC_PER_TICK</code> does not control any timer rates. Rather, it only determines the resolution of time reported by <code>clock_systimer()</code> and the resolution of times that can be set for certain delays including watchdog timers and delayed work.
</p> </p>
<p> <p>
In this case there is still a trade-off: It is better to have the <code>CONFIG_USEC_PER_TICK</code> as low as possible for higher timing resolution. However, the the time is currently held in <code>unsigned int</code>. On some systems, this may be 16-bits in width but on most contemporary systems it will be 32-bits. In either case, smaller values of <code>CONFIG_USEC_PER_TICK</code> will reduce the range of values that delays that can be represented. So the trade-off is between range and resolution (you could also modify the code to use a 64-bit value if you really want both). In this case there is still a trade-off: It is better to have the <code>CONFIG_USEC_PER_TICK</code> as low as possible for higher timing resolution. However, the time is currently held in <code>unsigned int</code>. On some systems, this may be 16-bits in width but on most contemporary systems it will be 32-bits. In either case, smaller values of <code>CONFIG_USEC_PER_TICK</code> will reduce the range of values that delays that can be represented. So the trade-off is between range and resolution (you could also modify the code to use a 64-bit value if you really want both).
</p> </p>
<p> <p>
The default, 100 microseconds, will provide for a range of delays up to 120 hours. The default, 100 microseconds, will provide for a range of delays up to 120 hours.
@@ -2408,7 +2408,7 @@ int up_timer_gettime(FAR struct timespec *ts);
</ul> </ul>
<p><b>Assumptions</b>:</p> <p><b>Assumptions</b>:</p>
<ul> <ul>
Called from the the normal tasking context. The implementation must provide whatever mutual exclusion is necessary for correct operation. This can include disabling interrupts in order to assure atomic register operations. Called from the normal tasking context. The implementation must provide whatever mutual exclusion is necessary for correct operation. This can include disabling interrupts in order to assure atomic register operations.
</ul> </ul>
<h5><a name="upalarmcancel">4.3.4.4.3 <code>up_alarm_cancel()</code></a></h5> <h5><a name="upalarmcancel">4.3.4.4.3 <code>up_alarm_cancel()</code></a></h5>
@@ -2761,7 +2761,7 @@ typedef uint32_t wdparm_t;
<h3><a name="wqclasses">4.4.1 Classes of Work Queues</a></h3> <h3><a name="wqclasses">4.4.1 Classes of Work Queues</a></h3>
<p><b>Classes of Work Queues</b>. <p><b>Classes of Work Queues</b>.
There are three different classes of work queues, each with different properties and intended usage. These class of work queues along with the the common work queue interface are described in the following paragraphs. There are three different classes of work queues, each with different properties and intended usage. These class of work queues along with the common work queue interface are described in the following paragraphs.
</p> </p>
<h4><a name="hpwork">4.4.1.1 High Priority Kernel Work queue</a></h4> <h4><a name="hpwork">4.4.1.1 High Priority Kernel Work queue</a></h4>
@@ -2786,7 +2786,7 @@ typedef uint32_t wdparm_t;
The execution priority of the high-priority worker thread. Default: 224 The execution priority of the high-priority worker thread. Default: 224
</li> </li>
<li><code>CONFIG_SCHED_HPWORKPERIOD</code>. <li><code>CONFIG_SCHED_HPWORKPERIOD</code>.
How often the worker thread re-checks for work in units of microseconds. This work period is really only necessary if the the high priority thread is performing periodic garbage collection. The worker thread will be awakened immediately with it is queued work to be done. If the high priority worker thread is performing garbage collection, then the default is 50*1000 (50 MS). Otherwise, if the lower priority worker thread is performing garbage collection, the default is 100*1000. How often the worker thread re-checks for work in units of microseconds. This work period is really only necessary if the high priority thread is performing periodic garbage collection. The worker thread will be awakened immediately with it is queued work to be done. If the high priority worker thread is performing garbage collection, then the default is 50*1000 (50 MS). Otherwise, if the lower priority worker thread is performing garbage collection, the default is 100*1000.
<li><code>CONFIG_SCHED_HPWORKSTACKSIZE</code>. <li><code>CONFIG_SCHED_HPWORKSTACKSIZE</code>.
The stack size allocated for the worker thread in bytes. Default: 2048. The stack size allocated for the worker thread in bytes. Default: 2048.
</li> </li>
+2 -2
View File
@@ -6433,7 +6433,7 @@ The cancellation cleanup handler will be popped from the cancellation cleanup st
<b>Input Parameters:</b> <b>Input Parameters:</b>
<p> <p>
<ul> <ul>
<li><code>routine</code>. The cleanup routine to be pushed on the the cleanup stack.</li> <li><code>routine</code>. The cleanup routine to be pushed on the cleanup stack.</li>
<li><code>arg</code>. An argument that will accompany the callback.</li> <li><code>arg</code>. An argument that will accompany the callback.</li>
</ul> </ul>
<p> <p>
@@ -10115,7 +10115,7 @@ int shmctl(int shmid, int cmd, FAR struct shmid_ds *buf);
<ul> <ul>
<li> <li>
<code>IPC_SET</code>. <code>IPC_SET</code>.
Does not set the the <code>shm_perm.uid</code> or <code>shm_perm.gid</code>members of the <code>shmid_ds</code> data structure associated with <code>shmid</code> because user and group IDs are not yet supported by NuttX Does not set the <code>shm_perm.uid</code> or <code>shm_perm.gid</code>members of the <code>shmid_ds</code> data structure associated with <code>shmid</code> because user and group IDs are not yet supported by NuttX
</li> </li>
<li> <li>
<code>IPC_SET</code>. <code>IPC_SET</code>.
+2 -2
View File
@@ -11146,7 +11146,7 @@ Additional new features and extended functionality:
- SYSLOG character device channel will now expand LF to CR-LF. - SYSLOG character device channel will now expand LF to CR-LF.
Controllable with a configuration option. Controllable with a configuration option.
- Add a SYSLOG character device that can be used to re-direct output - Add a SYSLOG character device that can be used to re-direct output
to the SYSLOG channel (Not be be confused the the SYSLGO output to a to the SYSLOG channel (Not be be confused the SYSLGO output to a
character device). character device).
- Debug features are now enabled separately from debug output. - Debug features are now enabled separately from debug output.
(1) CONFIG_DEBUG is gone. It is replaced with CONFIG_DEBUG_FEATURES. (1) CONFIG_DEBUG is gone. It is replaced with CONFIG_DEBUG_FEATURES.
@@ -12417,7 +12417,7 @@ Additional new features and extended functionality:
- Misoc LM32 Qemu: Integrate network support into configs/misoc/hello. - Misoc LM32 Qemu: Integrate network support into configs/misoc/hello.
From Ramtin Amin. From Ramtin Amin.
- Misoc LM32 Qemu: Remove configs/misoc/include/generated directory. I - Misoc LM32 Qemu: Remove configs/misoc/include/generated directory. I
suppose the the intent now is that this is a symbolic link? DANGER! suppose the intent now is that this is a symbolic link? DANGER!
This means that you cannot compile this code with first generating This means that you cannot compile this code with first generating
these files a providing a symbolic link to this location! There is a these files a providing a symbolic link to this location! There is a
sample directory containing generated sources. This is really only sample directory containing generated sources. This is really only
+1 -1
View File
@@ -2065,7 +2065,7 @@ o Pascal Add-On (pcode/)
Priority: Medium Priority: Medium
Title: PDBG Title: PDBG
Description: Move the the pascal p-code debugger into the NuttX apps/ tree Description: Move the pascal p-code debugger into the NuttX apps/ tree
where it can be used from the NSH command line. where it can be used from the NSH command line.
Status: Open Status: Open
Priority: Low Priority: Low
+1 -1
View File
@@ -767,7 +767,7 @@ config ARCH_HIPRI_INTERRUPT
there will most likely be a system failure. there will most likely be a system failure.
If the interrupt stack is selected, on the other hand, then the If the interrupt stack is selected, on the other hand, then the
interrupt handler will always set the the MSP to the interrupt interrupt handler will always set the MSP to the interrupt
stack. So when the high priority interrupt occurs, it will either stack. So when the high priority interrupt occurs, it will either
use the MSP of the last privileged thread to run or, in the case of use the MSP of the last privileged thread to run or, in the case of
the nested interrupt, the interrupt stack if no privileged task has the nested interrupt, the interrupt stack if no privileged task has
+1 -1
View File
@@ -410,7 +410,7 @@ struct ltdc_layer_s
* On error - -EINVAL * On error - -EINVAL
* *
* Procedure Information: * Procedure Information:
* If the srcxpos and srcypos unequal the the xpos and ypos of the coord * If the srcxpos and srcypos unequal the xpos and ypos of the coord
* structure this acts like moving the visible area to another position on * structure this acts like moving the visible area to another position on
* the screen during the next update operation. * the screen during the next update operation.
* *
+1 -1
View File
@@ -228,7 +228,7 @@ void a1x_lowsetup(void)
#warning Missing logic #warning Missing logic
/* Configure UART pins for the selected CONSOLE. If there are multiple /* Configure UART pins for the selected CONSOLE. If there are multiple
* pin options for a given UART, the the applicable option must be * pin options for a given UART, the applicable option must be
* disambiguated in the board.h header file. * disambiguated in the board.h header file.
*/ */
+1 -1
View File
@@ -149,7 +149,7 @@
* Name: up_addrenv_initdata * Name: up_addrenv_initdata
* *
* Description: * Description:
* Initialize the region of memory at the the beginning of the .bss/.data * Initialize the region of memory at the beginning of the .bss/.data
* region that is shared between the user process and the kernel. * region that is shared between the user process and the kernel.
* *
****************************************************************************/ ****************************************************************************/
+1 -1
View File
@@ -298,7 +298,7 @@ void arm_gic_initialize(void)
#endif #endif
#if !defined(CONFIG_ARCH_HAVE_TRUSTZONE) #if !defined(CONFIG_ARCH_HAVE_TRUSTZONE)
/* Enable the distributor by setting the the Enable bit in the enable /* Enable the distributor by setting the Enable bit in the enable
* register (no security extensions). * register (no security extensions).
*/ */
+1 -1
View File
@@ -102,7 +102,7 @@ static inline void arm_tmprestore(uint32_t l1save)
* *
* Description: * Description:
* If the page memory pool is statically mapped, then we do not have to * If the page memory pool is statically mapped, then we do not have to
* go through the the temporary mapping. We simply have to perform a * go through the temporary mapping. We simply have to perform a
* physical to virtual memory address mapping. * physical to virtual memory address mapping.
* *
****************************************************************************/ ****************************************************************************/
+2 -2
View File
@@ -60,7 +60,7 @@
* stale MSP, there will most likely be a system failure. * stale MSP, there will most likely be a system failure.
* *
* If the interrupt stack is selected, on the other hand, then the interrupt * If the interrupt stack is selected, on the other hand, then the interrupt
* handler will always set the the MSP to the interrupt stack. So when the high * handler will always set the MSP to the interrupt stack. So when the high
* priority interrupt occurs, it will either use the MSP of the last privileged * priority interrupt occurs, it will either use the MSP of the last privileged
* thread to run or, in the case of the nested interrupt, the interrupt stack if * thread to run or, in the case of the nested interrupt, the interrupt stack if
* no privileged task has run. * no privileged task has run.
@@ -70,7 +70,7 @@
# error Interrupt stack must be used with high priority interrupts in kernel mode # error Interrupt stack must be used with high priority interrupts in kernel mode
# endif # endif
/* Use the the BASEPRI to control interrupts is required if nested, high /* Use the BASEPRI to control interrupts is required if nested, high
* priority interrupts are supported. * priority interrupts are supported.
*/ */
+2 -2
View File
@@ -58,7 +58,7 @@
* interrupt occurs and uses this stale MSP, there will most likely be a system failure. * interrupt occurs and uses this stale MSP, there will most likely be a system failure.
* *
* If the interrupt stack is selected, on the other hand, then the interrupt handler will * If the interrupt stack is selected, on the other hand, then the interrupt handler will
* always set the the MSP to the interrupt stack. So when the high priority interrupt occurs, * always set the MSP to the interrupt stack. So when the high priority interrupt occurs,
* it will either use the MSP of the last privileged thread to run or, in the case of the * it will either use the MSP of the last privileged thread to run or, in the case of the
* nested interrupt, the interrupt stack if no privileged task has run. * nested interrupt, the interrupt stack if no privileged task has run.
*/ */
@@ -67,7 +67,7 @@
# error Interrupt stack must be used with high priority interrupts in kernel mode # error Interrupt stack must be used with high priority interrupts in kernel mode
# endif # endif
/* Use the the BASEPRI to control interrupts is required if nested, high /* Use the BASEPRI to control interrupts is required if nested, high
* priority interrupts are supported. * priority interrupts are supported.
*/ */
+1 -1
View File
@@ -96,7 +96,7 @@
typedef FAR void *DMA_HANDLE; typedef FAR void *DMA_HANDLE;
/* Description: /* Description:
* This is the type of the callback that is used to inform the user of the the * This is the type of the callback that is used to inform the user of the
* completion of the DMA. * completion of the DMA.
* *
* Input Parameters: * Input Parameters:
+5 -5
View File
@@ -1955,8 +1955,8 @@ static ssize_t efm32_in_transfer(FAR struct efm32_usbhost_s *priv, int chidx,
/* Check for a special case: If (1) the transfer was NAKed and (2) /* Check for a special case: If (1) the transfer was NAKed and (2)
* no Tx FIFO empty or Rx FIFO not-empty event occurred, then we * no Tx FIFO empty or Rx FIFO not-empty event occurred, then we
* should be able to just flush the Rx and Tx FIFOs and try again. * should be able to just flush the Rx and Tx FIFOs and try again.
* We can detect this latter case because the then the transfer * We can detect this latter case because then the transfer buffer
* buffer pointer and buffer size will be unaltered. * pointer and buffer size will be unaltered.
*/ */
elapsed = clock_systimer() - start; elapsed = clock_systimer() - start;
@@ -2221,8 +2221,8 @@ static ssize_t efm32_out_transfer(FAR struct efm32_usbhost_s *priv, int chidx,
/* Check for a special case: If (1) the transfer was NAKed and (2) /* Check for a special case: If (1) the transfer was NAKed and (2)
* no Tx FIFO empty or Rx FIFO not-empty event occurred, then we * no Tx FIFO empty or Rx FIFO not-empty event occurred, then we
* should be able to just flush the Rx and Tx FIFOs and try again. * should be able to just flush the Rx and Tx FIFOs and try again.
* We can detect this latter case because the then the transfer * We can detect this latter case because then the transfer buffer
* buffer pointer and buffer size will be unaltered. * pointer and buffer size will be unaltered.
*/ */
elapsed = clock_systimer() - start; elapsed = clock_systimer() - start;
@@ -4613,7 +4613,7 @@ static ssize_t efm32_transfer(FAR struct usbhost_driver_s *drvr, usbhost_ep_t ep
* Description: * Description:
* Process a request to handle a transfer descriptor. This method will * Process a request to handle a transfer descriptor. This method will
* enqueue the transfer request and return immediately. When the transfer * enqueue the transfer request and return immediately. When the transfer
* completes, the the callback will be invoked with the provided transfer. * completes, the callback will be invoked with the provided transfer.
* This method is useful for receiving interrupt transfers which may come * This method is useful for receiving interrupt transfers which may come
* infrequently. * infrequently.
* *
+2 -2
View File
@@ -59,7 +59,7 @@
* stale MSP, there will most likely be a system failure. * stale MSP, there will most likely be a system failure.
* *
* If the interrupt stack is selected, on the other hand, then the interrupt * If the interrupt stack is selected, on the other hand, then the interrupt
* handler will always set the the MSP to the interrupt stack. So when the high * handler will always set the MSP to the interrupt stack. So when the high
* priority interrupt occurs, it will either use the MSP of the last privileged * priority interrupt occurs, it will either use the MSP of the last privileged
* thread to run or, in the case of the nested interrupt, the interrupt stack if * thread to run or, in the case of the nested interrupt, the interrupt stack if
* no privileged task has run. * no privileged task has run.
@@ -69,7 +69,7 @@
# error Interrupt stack must be used with high priority interrupts in kernel mode # error Interrupt stack must be used with high priority interrupts in kernel mode
# endif # endif
/* Use the the BASEPRI to control interrupts is required if nested, high /* Use the BASEPRI to control interrupts is required if nested, high
* priority interrupts are supported. * priority interrupts are supported.
*/ */
+1 -1
View File
@@ -50,7 +50,7 @@
************************************************************************************/ ************************************************************************************/
/* The vectors are, by default, positioned at the beginning of the text /* The vectors are, by default, positioned at the beginning of the text
* section. Under what conditions do we have to remap the these vectors? * section. Under what conditions do we have to remap these vectors?
* *
* 1) If we are using high vectors (CONFIG_ARCH_LOWVECTORS=n). In this case, * 1) If we are using high vectors (CONFIG_ARCH_LOWVECTORS=n). In this case,
* the vectors will lie at virtual address 0xffff:000 and we will need * the vectors will lie at virtual address 0xffff:000 and we will need
+1 -1
View File
@@ -457,7 +457,7 @@ static void kinetis_shutdown(struct uart_dev_s *dev)
* Description: * Description:
* Configure the LPUART to operation in interrupt driven mode. This * Configure the LPUART to operation in interrupt driven mode. This
* method is called when the serial port is opened. Normally, this is * method is called when the serial port is opened. Normally, this is
* just after the the setup() method is called, however, the serial * just after the setup() method is called, however, the serial
* console may operate in a non-interrupt driven mode during the boot phase. * console may operate in a non-interrupt driven mode during the boot phase.
* *
* RX and TX interrupts are not enabled when by the attach method (unless * RX and TX interrupts are not enabled when by the attach method (unless
+1 -1
View File
@@ -95,7 +95,7 @@
/* Enable pull-up resistors /* Enable pull-up resistors
* *
* Kinetis does not have pullups on all their development boards * Kinetis does not have pullups on all their development boards
* So allow the the board config to enable them. * So allow the board config to enable them.
*/ */
#if defined(BOARD_SDHC_ENABLE_PULLUPS) #if defined(BOARD_SDHC_ENABLE_PULLUPS)
+2 -2
View File
@@ -60,7 +60,7 @@
* stale MSP, there will most likely be a system failure. * stale MSP, there will most likely be a system failure.
* *
* If the interrupt stack is selected, on the other hand, then the interrupt * If the interrupt stack is selected, on the other hand, then the interrupt
* handler will always set the the MSP to the interrupt stack. So when the high * handler will always set the MSP to the interrupt stack. So when the high
* priority interrupt occurs, it will either use the MSP of the last privileged * priority interrupt occurs, it will either use the MSP of the last privileged
* thread to run or, in the case of the nested interrupt, the interrupt stack if * thread to run or, in the case of the nested interrupt, the interrupt stack if
* no privileged task has run. * no privileged task has run.
@@ -70,7 +70,7 @@
# error Interrupt stack must be used with high priority interrupts in kernel mode # error Interrupt stack must be used with high priority interrupts in kernel mode
# endif # endif
/* Use the the BASEPRI to control interrupts is required if nested, high /* Use the BASEPRI to control interrupts is required if nested, high
* priority interrupts are supported. * priority interrupts are supported.
*/ */
+1 -1
View File
@@ -498,7 +498,7 @@ static void up_shutdown(struct uart_dev_s *dev)
* Description: * Description:
* Configure the UART to operation in interrupt driven mode. This method * Configure the UART to operation in interrupt driven mode. This method
* is called when the serial port is opened. Normally, this is just after * is called when the serial port is opened. Normally, this is just after
* the the setup() method is called, however, the serial console may * the setup() method is called, however, the serial console may
* operate in a non-interrupt driven mode during the boot phase. * operate in a non-interrupt driven mode during the boot phase.
* *
* RX and TX interrupts are not enabled when by the attach method (unless * RX and TX interrupts are not enabled when by the attach method (unless
+1 -1
View File
@@ -3164,7 +3164,7 @@ static void lpc17_asynch_completion(struct lpc17_usbhost_s *priv,
* Description: * Description:
* Process a request to handle a transfer descriptor. This method will * Process a request to handle a transfer descriptor. This method will
* enqueue the transfer request and return immediately. When the transfer * enqueue the transfer request and return immediately. When the transfer
* completes, the the callback will be invoked with the provided transfer. * completes, the callback will be invoked with the provided transfer.
* This method is useful for receiving interrupt transfers which may come * This method is useful for receiving interrupt transfers which may come
* infrequently. * infrequently.
* *
+2 -2
View File
@@ -58,7 +58,7 @@
* interrupt occurs and uses this stale MSP, there will most likely be a system failure. * interrupt occurs and uses this stale MSP, there will most likely be a system failure.
* *
* If the interrupt stack is selected, on the other hand, then the interrupt handler will * If the interrupt stack is selected, on the other hand, then the interrupt handler will
* always set the the MSP to the interrupt stack. So when the high priority interrupt occurs, * always set the MSP to the interrupt stack. So when the high priority interrupt occurs,
* it will either use the MSP of the last privileged thread to run or, in the case of the * it will either use the MSP of the last privileged thread to run or, in the case of the
* nested interrupt, the interrupt stack if no privileged task has run. * nested interrupt, the interrupt stack if no privileged task has run.
*/ */
@@ -67,7 +67,7 @@
# error Interrupt stack must be used with high priority interrupts in kernel mode # error Interrupt stack must be used with high priority interrupts in kernel mode
# endif # endif
/* Use the the BASEPRI to control interrupts is required if nested, high /* Use the BASEPRI to control interrupts is required if nested, high
* priority interrupts are supported. * priority interrupts are supported.
*/ */
+1 -1
View File
@@ -263,7 +263,7 @@ config LPC31_EHCI_SDIS
Selecting this option ensures that overruns/underruns of the latency Selecting this option ensures that overruns/underruns of the latency
FIFO are eliminated for low bandwidth systems where the RX and TX FIFO are eliminated for low bandwidth systems where the RX and TX
buffers are sufficient to contain the entire packet. Enabling stream buffers are sufficient to contain the entire packet. Enabling stream
disable also has the effect of ensuring the the TX latency is filled disable also has the effect of ensuring the TX latency is filled
to capacity before the packet is launched onto the USB. to capacity before the packet is launched onto the USB.
Note: Time duration to pre-fill the FIFO becomes significant when stream disable is active. Note: Time duration to pre-fill the FIFO becomes significant when stream disable is active.
+3 -3
View File
@@ -3008,7 +3008,7 @@ static inline void lpc31_ioc_bottomhalf(void)
qh = (struct lpc31_qh_s *)lpc31_virtramaddr(lpc31_swap32(*bp) & QH_HLP_MASK); qh = (struct lpc31_qh_s *)lpc31_virtramaddr(lpc31_swap32(*bp) & QH_HLP_MASK);
/* If the asynchronous queue is empty, then the forward point in the /* If the asynchronous queue is empty, then the forward point in the
* asynchronous queue head will point back to the the queue head. * asynchronous queue head will point back to the queue head.
*/ */
if (qh && qh != &g_asynchead) if (qh && qh != &g_asynchead)
@@ -4362,7 +4362,7 @@ errout_with_sem:
* Description: * Description:
* Process a request to handle a transfer descriptor. This method will * Process a request to handle a transfer descriptor. This method will
* enqueue the transfer request and return immediately. When the transfer * enqueue the transfer request and return immediately. When the transfer
* completes, the the callback will be invoked with the provided transfer. * completes, the callback will be invoked with the provided transfer.
* This method is useful for receiving interrupt transfers which may come * This method is useful for receiving interrupt transfers which may come
* infrequently. * infrequently.
* *
@@ -4560,7 +4560,7 @@ static int lpc31_cancel(FAR struct usbhost_driver_s *drvr, usbhost_ep_t ep)
qh = (struct lpc31_qh_s *)lpc31_virtramaddr(lpc31_swap32(*bp) & QH_HLP_MASK); qh = (struct lpc31_qh_s *)lpc31_virtramaddr(lpc31_swap32(*bp) & QH_HLP_MASK);
/* If the asynchronous queue is empty, then the forward point in /* If the asynchronous queue is empty, then the forward point in
* the asynchronous queue head will point back to the the queue * the asynchronous queue head will point back to the queue
* head. * head.
*/ */
+3 -3
View File
@@ -2849,7 +2849,7 @@ static inline void lpc43_ioc_bottomhalf(void)
qh = (struct lpc43_qh_s *)lpc43_virtramaddr(lpc43_swap32(*bp) & QH_HLP_MASK); qh = (struct lpc43_qh_s *)lpc43_virtramaddr(lpc43_swap32(*bp) & QH_HLP_MASK);
/* If the asynchronous queue is empty, then the forward point in the /* If the asynchronous queue is empty, then the forward point in the
* asynchronous queue head will point back to the the queue head. * asynchronous queue head will point back to the queue head.
*/ */
if (qh && qh != &g_asynchead) if (qh && qh != &g_asynchead)
@@ -4193,7 +4193,7 @@ errout_with_sem:
* Description: * Description:
* Process a request to handle a transfer descriptor. This method will * Process a request to handle a transfer descriptor. This method will
* enqueue the transfer request and return immediately. When the transfer * enqueue the transfer request and return immediately. When the transfer
* completes, the the callback will be invoked with the provided transfer. * completes, the callback will be invoked with the provided transfer.
* This method is useful for receiving interrupt transfers which may come * This method is useful for receiving interrupt transfers which may come
* infrequently. * infrequently.
* *
@@ -4391,7 +4391,7 @@ static int lpc43_cancel(FAR struct usbhost_driver_s *drvr, usbhost_ep_t ep)
qh = (struct lpc43_qh_s *)lpc43_virtramaddr(lpc43_swap32(*bp) & QH_HLP_MASK); qh = (struct lpc43_qh_s *)lpc43_virtramaddr(lpc43_swap32(*bp) & QH_HLP_MASK);
/* If the asynchronous queue is empty, then the forward point in /* If the asynchronous queue is empty, then the forward point in
* the asynchronous queue head will point back to the the queue * the asynchronous queue head will point back to the queue
* head. * head.
*/ */
+1 -1
View File
@@ -1483,7 +1483,7 @@ static int lpc43_recvframe(FAR struct lpc43_ethmac_s *priv)
{ {
priv->segments++; priv->segments++;
/* Check if the there is only one segment in the frame */ /* Check if there is only one segment in the frame */
if (priv->segments == 1) if (priv->segments == 1)
{ {
+1 -1
View File
@@ -405,7 +405,7 @@ int sam_oneshot_cancel(struct sam_oneshot_s *oneshot,
* the counter expires while we are doing this, the counter clock will be * the counter expires while we are doing this, the counter clock will be
* stopped, but the clock will not be disabled. * stopped, but the clock will not be disabled.
* *
* The expected behavior is that the the counter register will freezes at * The expected behavior is that the counter register will freezes at
* a value equal to the RC register when the timer expires. The counter * a value equal to the RC register when the timer expires. The counter
* should have values between 0 and RC in all other cased. * should have values between 0 and RC in all other cased.
* *
+1 -1
View File
@@ -1166,7 +1166,7 @@ uint32_t sam_tc_divfreq(TC_HANDLE handle)
DEBUGASSERT(chan); DEBUGASSERT(chan);
/* Get the the TC_CMR register contents for this channel and extract the /* Get the TC_CMR register contents for this channel and extract the
* TCCLKS index. * TCCLKS index.
*/ */
+1 -1
View File
@@ -313,7 +313,7 @@ void arm_timer_initialize(void)
* any failure. * any failure.
* *
* Assumptions: * Assumptions:
* Called from the the normal tasking context. The implementation must * Called from the normal tasking context. The implementation must
* provide whatever mutual exclusion is necessary for correct operation. * provide whatever mutual exclusion is necessary for correct operation.
* This can include disabling interrupts in order to assure atomic register * This can include disabling interrupts in order to assure atomic register
* operations. * operations.
+3 -3
View File
@@ -893,7 +893,7 @@ static int sam_txpoll(struct net_driver_s *dev)
sam_transmit(priv); sam_transmit(priv);
/* Check if the there are any free TX descriptors. We cannot perform /* Check if there are any free TX descriptors. We cannot perform
* the TX poll if we do not have buffering for another packet. * the TX poll if we do not have buffering for another packet.
*/ */
@@ -941,7 +941,7 @@ static void sam_dopoll(struct sam_emac_s *priv)
{ {
struct net_driver_s *dev = &priv->dev; struct net_driver_s *dev = &priv->dev;
/* Check if the there are any free TX descriptors. We cannot perform the /* Check if there are any free TX descriptors. We cannot perform the
* TX poll if we do not have buffering for another packet. * TX poll if we do not have buffering for another packet.
*/ */
@@ -1747,7 +1747,7 @@ static void sam_poll_work(FAR void *arg)
FAR struct sam_emac_s *priv = (FAR struct sam_emac_s *)arg; FAR struct sam_emac_s *priv = (FAR struct sam_emac_s *)arg;
struct net_driver_s *dev = &priv->dev; struct net_driver_s *dev = &priv->dev;
/* Check if the there are any free TX descriptors. We cannot perform the /* Check if there are any free TX descriptors. We cannot perform the
* TX poll if we do not have buffering for another packet. * TX poll if we do not have buffering for another packet.
*/ */
+2 -2
View File
@@ -57,7 +57,7 @@
* interrupt occurs and uses this stale MSP, there will most likely be a system failure. * interrupt occurs and uses this stale MSP, there will most likely be a system failure.
* *
* If the interrupt stack is selected, on the other hand, then the interrupt handler will * If the interrupt stack is selected, on the other hand, then the interrupt handler will
* always set the the MSP to the interrupt stack. So when the high priority interrupt occurs, * always set the MSP to the interrupt stack. So when the high priority interrupt occurs,
* it will either use the MSP of the last privileged thread to run or, in the case of the * it will either use the MSP of the last privileged thread to run or, in the case of the
* nested interrupt, the interrupt stack if no privileged task has run. * nested interrupt, the interrupt stack if no privileged task has run.
*/ */
@@ -66,7 +66,7 @@
# error Interrupt stack must be used with high priority interrupts in kernel mode # error Interrupt stack must be used with high priority interrupts in kernel mode
# endif # endif
/* Use the the BASEPRI to control interrupts is required if nested, high /* Use the BASEPRI to control interrupts is required if nested, high
* priority interrupts are supported. * priority interrupts are supported.
*/ */
+4 -4
View File
@@ -953,7 +953,7 @@ config SAMA5_LCDC_BACKCOLOR
config SAMA5_LCDC_FB_VBASE config SAMA5_LCDC_FB_VBASE
hex "Framebuffer memory start address (virtual)" hex "Framebuffer memory start address (virtual)"
---help--- ---help---
If you are using the the LCDC, then you must provide the virtual If you are using the LCDC, then you must provide the virtual
address of the start of the framebuffer. This address must be address of the start of the framebuffer. This address must be
aligned to a 1MB bounder (i.e., the last five "digits" of the aligned to a 1MB bounder (i.e., the last five "digits" of the
hexadecimal address must be zero). hexadecimal address must be zero).
@@ -961,7 +961,7 @@ config SAMA5_LCDC_FB_VBASE
config SAMA5_LCDC_FB_PBASE config SAMA5_LCDC_FB_PBASE
hex "Framebuffer memory start address (virtual)" hex "Framebuffer memory start address (virtual)"
---help--- ---help---
If you are using the the LCDC, then you must provide the physical If you are using the LCDC, then you must provide the physical
address of the start of the framebuffer. This address must be address of the start of the framebuffer. This address must be
aligned to a 1MB bounder (i.e., the last five "digits" of the aligned to a 1MB bounder (i.e., the last five "digits" of the
hexadecimal address must be zero). hexadecimal address must be zero).
@@ -4953,7 +4953,7 @@ config SAMA5_DDRCS_PGHEAP_OFFSET
If you are executing from DRAM, then you must have already reserved If you are executing from DRAM, then you must have already reserved
this region with SAMA5_DDRCS_RESERVE, setting SAMA5_DDRCS_HEAP_END this region with SAMA5_DDRCS_RESERVE, setting SAMA5_DDRCS_HEAP_END
so that this page cache region defined by SAMA5_DDRCS_PGHEAP_OFFSET so that this page cache region defined by SAMA5_DDRCS_PGHEAP_OFFSET
and SAMA5_DDRCS_PGHEAP_SIZE does not overlap the the region of DRAM and SAMA5_DDRCS_PGHEAP_SIZE does not overlap the region of DRAM
that is added to the heap. If you are not executing from DRAM, then that is added to the heap. If you are not executing from DRAM, then
you must have excluding this page cache region from the heap ether you must have excluding this page cache region from the heap ether
by (1) not selecting SAMA5_DDRCS_HEAP, or (2) selecting by (1) not selecting SAMA5_DDRCS_HEAP, or (2) selecting
@@ -4971,7 +4971,7 @@ config SAMA5_DDRCS_PGHEAP_SIZE
If you are executing from DRAM, then you must have already reserved If you are executing from DRAM, then you must have already reserved
this region with SAMA5_DDRCS_RESERVE, setting SAMA5_DDRCS_HEAP_END this region with SAMA5_DDRCS_RESERVE, setting SAMA5_DDRCS_HEAP_END
so that this page cache region defined by SAMA5_DDRCS_PGHEAP_OFFSET so that this page cache region defined by SAMA5_DDRCS_PGHEAP_OFFSET
and SAMA5_DDRCS_PGHEAP_SIZE does not overlap the the region of DRAM and SAMA5_DDRCS_PGHEAP_SIZE does not overlap the region of DRAM
that is added to the heap. If you are not executing from DRAM, then that is added to the heap. If you are not executing from DRAM, then
you must have excluding this page cache region from the heap ether you must have excluding this page cache region from the heap ether
by (1) not selecting SAMA5_DDRCS_HEAP, or (2) selecting by (1) not selecting SAMA5_DDRCS_HEAP, or (2) selecting
+1 -1
View File
@@ -1,6 +1,6 @@
/************************************************************************************ /************************************************************************************
* arch/arm/src/sama5/chip/sam_emaca.h * arch/arm/src/sama5/chip/sam_emaca.h
* This is the form of the EMAC interface used the the SAMA5D3 * This is the form of the EMAC interface used the SAMA5D3
* *
* Copyright (C) 2013-2014 Gregory Nutt. All rights reserved. * Copyright (C) 2013-2014 Gregory Nutt. All rights reserved.
* Author: Gregory Nutt <gnutt@nuttx.org> * Author: Gregory Nutt <gnutt@nuttx.org>
+1 -1
View File
@@ -1,6 +1,6 @@
/************************************************************************************ /************************************************************************************
* arch/arm/src/sama5/chip/sam_emacb.h * arch/arm/src/sama5/chip/sam_emacb.h
* This is the form of the EMAC interface used the the SAMA5D4 (and also the SAM43). * This is the form of the EMAC interface used the SAMA5D4 (and also the SAM43).
* This is referred as GMAC in the documentation even though it does not support * This is referred as GMAC in the documentation even though it does not support
* Gibabit Ethernet. * Gibabit Ethernet.
* *
+3 -3
View File
@@ -736,7 +736,7 @@ static void sam_adc_dmacallback(DMA_HANDLE handle, void *arg, int result)
/* Check of the bottom half is keeping up with us. /* Check of the bottom half is keeping up with us.
* *
* ready == false: Would mean that the worker thready has not ran since * ready == false: Would mean that the worker thready has not ran since
* the the last DMA callback. * the last DMA callback.
* enabled == false: Means that the upper half has asked us nicely to stop * enabled == false: Means that the upper half has asked us nicely to stop
* transferring DMA data. * transferring DMA data.
*/ */
@@ -1294,7 +1294,7 @@ static int sam_adc_settimer(struct sam_adc_s *priv, uint32_t frequency,
return ret; return ret;
} }
/* Set the timer/counter waveform mode the the clock input slected by /* Set the timer/counter waveform mode the clock input slected by
* sam_tc_divisor() * sam_tc_divisor()
*/ */
@@ -1448,7 +1448,7 @@ static int sam_adc_trigger(struct sam_adc_s *priv)
/* Configure to trigger using Timer/counter 0, channel 1, 2, or 3. /* Configure to trigger using Timer/counter 0, channel 1, 2, or 3.
* NOTE: This trigger option depends on having properly configuer * NOTE: This trigger option depends on having properly configuer
* timer/counter 0 to provide this output. That is done independently * timer/counter 0 to provide this output. That is done independently
* the the timer/counter driver. * the timer/counter driver.
*/ */
/* Set TIOAn trigger where n=0, 1, or 2 */ /* Set TIOAn trigger where n=0, 1, or 2 */
+1 -1
View File
@@ -147,7 +147,7 @@
# define SAMA5_PRIMARY_HEAP_END CONFIG_SAMA5_DDRCS_HEAP_END # define SAMA5_PRIMARY_HEAP_END CONFIG_SAMA5_DDRCS_HEAP_END
#else #else
/* Otherwise, add the RAM all the way to the the end of the primary memory /* Otherwise, add the RAM all the way to the end of the primary memory
* region to the heap. * region to the heap.
*/ */
+1 -1
View File
@@ -580,7 +580,7 @@ void sam_dbgu_devinitialize(void)
putreg32(DBGU_INT_ALLINTS, SAM_DBGU_IDR); putreg32(DBGU_INT_ALLINTS, SAM_DBGU_IDR);
#ifdef CONFIG_SAMA5_DBGU_CONSOLE #ifdef CONFIG_SAMA5_DBGU_CONSOLE
/* Configuration the DBGU as the the console */ /* Configuration the DBGU as the console */
g_dbgu_port.isconsole = true; g_dbgu_port.isconsole = true;
dbgu_configure(); dbgu_configure();
+3 -3
View File
@@ -2819,7 +2819,7 @@ static inline void sam_ioc_bottomhalf(void)
qh = (struct sam_qh_s *)sam_virtramaddr(sam_swap32(*bp) & QH_HLP_MASK); qh = (struct sam_qh_s *)sam_virtramaddr(sam_swap32(*bp) & QH_HLP_MASK);
/* If the asynchronous queue is empty, then the forward point in the /* If the asynchronous queue is empty, then the forward point in the
* asynchronous queue head will point back to the the queue head. * asynchronous queue head will point back to the queue head.
*/ */
if (qh && qh != &g_asynchead) if (qh && qh != &g_asynchead)
@@ -4183,7 +4183,7 @@ errout_with_sem:
* Description: * Description:
* Process a request to handle a transfer descriptor. This method will * Process a request to handle a transfer descriptor. This method will
* enqueue the transfer request and return immediately. When the transfer * enqueue the transfer request and return immediately. When the transfer
* completes, the the callback will be invoked with the provided transfer. * completes, the callback will be invoked with the provided transfer.
* This method is useful for receiving interrupt transfers which may come * This method is useful for receiving interrupt transfers which may come
* infrequently. * infrequently.
* *
@@ -4373,7 +4373,7 @@ static int sam_cancel(FAR struct usbhost_driver_s *drvr, usbhost_ep_t ep)
qh = (struct sam_qh_s *)sam_virtramaddr(sam_swap32(*bp) & QH_HLP_MASK); qh = (struct sam_qh_s *)sam_virtramaddr(sam_swap32(*bp) & QH_HLP_MASK);
/* If the asynchronous queue is empty, then the forward point in /* If the asynchronous queue is empty, then the forward point in
* the asynchronous queue head will point back to the the queue * the asynchronous queue head will point back to the queue
* head. * head.
*/ */
+3 -3
View File
@@ -902,7 +902,7 @@ static int sam_txpoll(struct net_driver_s *dev)
sam_transmit(priv); sam_transmit(priv);
/* Check if the there are any free TX descriptors. We cannot perform /* Check if there are any free TX descriptors. We cannot perform
* the TX poll if we do not have buffering for another packet. * the TX poll if we do not have buffering for another packet.
*/ */
@@ -949,7 +949,7 @@ static void sam_dopoll(struct sam_emac_s *priv)
{ {
struct net_driver_s *dev = &priv->dev; struct net_driver_s *dev = &priv->dev;
/* Check if the there are any free TX descriptors. We cannot perform the /* Check if there are any free TX descriptors. We cannot perform the
* TX poll if we do not have buffering for another packet. * TX poll if we do not have buffering for another packet.
*/ */
@@ -1783,7 +1783,7 @@ static void sam_poll_work(FAR void *arg)
FAR struct sam_emac_s *priv = (FAR struct sam_emac_s *)arg; FAR struct sam_emac_s *priv = (FAR struct sam_emac_s *)arg;
struct net_driver_s *dev = &priv->dev; struct net_driver_s *dev = &priv->dev;
/* Check if the there are any free TX descriptors. We cannot perform the /* Check if there are any free TX descriptors. We cannot perform the
* TX poll if we do not have buffering for another packet. * TX poll if we do not have buffering for another packet.
*/ */
+3 -3
View File
@@ -1237,7 +1237,7 @@ static int sam_txpoll(struct net_driver_s *dev)
sam_transmit(priv); sam_transmit(priv);
/* Check if the there are any free TX descriptors. We cannot perform /* Check if there are any free TX descriptors. We cannot perform
* the TX poll if we do not have buffering for another packet. * the TX poll if we do not have buffering for another packet.
*/ */
@@ -1285,7 +1285,7 @@ static void sam_dopoll(struct sam_emac_s *priv)
{ {
struct net_driver_s *dev = &priv->dev; struct net_driver_s *dev = &priv->dev;
/* Check if the there are any free TX descriptors. We cannot perform the /* Check if there are any free TX descriptors. We cannot perform the
* TX poll if we do not have buffering for another packet. * TX poll if we do not have buffering for another packet.
*/ */
@@ -2144,7 +2144,7 @@ static void sam_poll_work(FAR void *arg)
FAR struct sam_emac_s *priv = (FAR struct sam_emac_s *)arg; FAR struct sam_emac_s *priv = (FAR struct sam_emac_s *)arg;
struct net_driver_s *dev = &priv->dev; struct net_driver_s *dev = &priv->dev;
/* Check if the there are any free TX descriptors. We cannot perform the /* Check if there are any free TX descriptors. We cannot perform the
* TX poll if we do not have buffering for another packet. * TX poll if we do not have buffering for another packet.
*/ */
+3 -3
View File
@@ -834,7 +834,7 @@ static int sam_txpoll(struct net_driver_s *dev)
sam_transmit(priv); sam_transmit(priv);
/* Check if the there are any free TX descriptors. We cannot perform /* Check if there are any free TX descriptors. We cannot perform
* the TX poll if we do not have buffering for another packet. * the TX poll if we do not have buffering for another packet.
*/ */
@@ -881,7 +881,7 @@ static void sam_dopoll(struct sam_gmac_s *priv)
{ {
struct net_driver_s *dev = &priv->dev; struct net_driver_s *dev = &priv->dev;
/* Check if the there are any free TX descriptors. We cannot perform the /* Check if there are any free TX descriptors. We cannot perform the
* TX poll if we do not have buffering for another packet. * TX poll if we do not have buffering for another packet.
*/ */
@@ -1735,7 +1735,7 @@ static void sam_poll_work(FAR void *arg)
FAR struct sam_gmac_s *priv = (FAR struct sam_gmac_s *)arg; FAR struct sam_gmac_s *priv = (FAR struct sam_gmac_s *)arg;
struct net_driver_s *dev = &priv->dev; struct net_driver_s *dev = &priv->dev;
/* Check if the there are any free TX descriptors. We cannot perform the /* Check if there are any free TX descriptors. We cannot perform the
* TX poll if we do not have buffering for another packet. * TX poll if we do not have buffering for another packet.
*/ */
+1 -1
View File
@@ -3102,7 +3102,7 @@ static void sam_callback(void *arg)
priv->cbevents = 0; priv->cbevents = 0;
/* This function is called either from (1) the context of the calling /* This function is called either from (1) the context of the calling
* thread or from the the context of (2) card detection logic. The * thread or from the context of (2) card detection logic. The
* caller may or may not have interrupts disabled (we have them * caller may or may not have interrupts disabled (we have them
* disabled here!). * disabled here!).
* *
+1 -1
View File
@@ -50,7 +50,7 @@
************************************************************************************/ ************************************************************************************/
/* The vectors are, by default, positioned at the beginning of the text /* The vectors are, by default, positioned at the beginning of the text
* section. Under what conditions do we have to remap the these vectors? * section. Under what conditions do we have to remap these vectors?
* *
* 1) If we are using high vectors (CONFIG_ARCH_LOWVECTORS=n). In this case, * 1) If we are using high vectors (CONFIG_ARCH_LOWVECTORS=n). In this case,
* the vectors will lie at virtual address 0xffff:000 and we will need * the vectors will lie at virtual address 0xffff:000 and we will need
+1 -1
View File
@@ -1245,7 +1245,7 @@ static int nand_wait_dma(struct sam_nandcs_s *priv)
* *
* Description: * Description:
* Called when one NAND DMA sequence completes. This function just wakes * Called when one NAND DMA sequence completes. This function just wakes
* the the waiting NAND driver logic. * the waiting NAND driver logic.
* *
****************************************************************************/ ****************************************************************************/
+1 -1
View File
@@ -3531,7 +3531,7 @@ static void sam_asynch_completion(struct sam_eplist_s *eplist)
* Description: * Description:
* Process a request to handle a transfer descriptor. This method will * Process a request to handle a transfer descriptor. This method will
* enqueue the transfer request and return immediately. When the transfer * enqueue the transfer request and return immediately. When the transfer
* completes, the the callback will be invoked with the provided transfer. * completes, the callback will be invoked with the provided transfer.
* This method is useful for receiving interrupt transfers which may come * This method is useful for receiving interrupt transfers which may come
* infrequently. * infrequently.
* *
+1 -1
View File
@@ -417,7 +417,7 @@ int sam_oneshot_cancel(struct sam_oneshot_s *oneshot,
* the counter expires while we are doing this, the counter clock will be * the counter expires while we are doing this, the counter clock will be
* stopped, but the clock will not be disabled. * stopped, but the clock will not be disabled.
* *
* The expected behavior is that the the counter register will freezes at * The expected behavior is that the counter register will freezes at
* a value equal to the RC register when the timer expires. The counter * a value equal to the RC register when the timer expires. The counter
* should have values between 0 and RC in all other cased. * should have values between 0 and RC in all other cased.
* *
+1 -1
View File
@@ -1427,7 +1427,7 @@ uint32_t sam_tc_divfreq(TC_HANDLE handle)
DEBUGASSERT(chan); DEBUGASSERT(chan);
/* Get the the TC_CMR register contents for this channel and extract the /* Get the TC_CMR register contents for this channel and extract the
* TCCLKS index. * TCCLKS index.
*/ */

Some files were not shown because too many files have changed in this diff Show More