mirror of
https://github.com/apache/nuttx.git
synced 2026-06-04 23:03:27 +08:00
Documenation/, configs/: ix typos and one HTML syntax error. Fix HTML syntax error in Documentation/NfsHowto.html: <coce> -> <code> html tag.
This commit is contained in:
committed by
Gregory Nutt
parent
5bf674a99f
commit
32e9ba7604
@@ -118,7 +118,7 @@ int mount(const char *source, const char *target, const char *filesystemtype, un
|
|||||||
<code>mount()</code> attaches the filesystem specified by the <code>source</code> block device name into the root file system at the path specified by <code>target</code>.
|
<code>mount()</code> attaches the filesystem specified by the <code>source</code> block device name into the root file system at the path specified by <code>target</code>.
|
||||||
</p>
|
</p>
|
||||||
<p>
|
<p>
|
||||||
<b>Input Paramters</b>:
|
<b>Input Parameters</b>:
|
||||||
<ul>
|
<ul>
|
||||||
<li><code>source</code>. A null-terminated string providing the fill path to a block driver in the NuttX pseudo-file system.
|
<li><code>source</code>. A null-terminated string providing the fill path to a block driver in the NuttX pseudo-file system.
|
||||||
<li><code>target</code>. The location in the NuttX pseudo-file system where the volume will be mounted.
|
<li><code>target</code>. The location in the NuttX pseudo-file system where the volume will be mounted.
|
||||||
@@ -132,7 +132,7 @@ int mount(const char *source, const char *target, const char *filesystemtype, un
|
|||||||
Zero is returned on success; -1 is returned on an error and <code>errno</code> is set appropriately:
|
Zero is returned on success; -1 is returned on an error and <code>errno</code> is set appropriately:
|
||||||
<ul>
|
<ul>
|
||||||
<li><code>EACCES</code>.
|
<li><code>EACCES</code>.
|
||||||
A component of a path was not searchable or mounting a read-onlyfilesystem was attempted without giving the <code>MS_RDONLY</code> flag.
|
A component of a path was not searchable or mounting a read-only filesystem was attempted without giving the <code>MS_RDONLY</code> flag.
|
||||||
</li>
|
</li>
|
||||||
<li><code>EBUSY</code>.
|
<li><code>EBUSY</code>.
|
||||||
<code>source</code> is already mounted.
|
<code>source</code> is already mounted.
|
||||||
@@ -315,7 +315,7 @@ This is a test
|
|||||||
directory machine1(option11,option12)
|
directory machine1(option11,option12)
|
||||||
</pre></ul>
|
</pre></ul>
|
||||||
<p>
|
<p>
|
||||||
So for our example we export <coce>/export</code> to the client 10.0.0.2 add the entry:
|
So for our example we export <code>/export</code> to the client 10.0.0.2 add the entry:
|
||||||
</p>
|
</p>
|
||||||
<ul><pre>
|
<ul><pre>
|
||||||
/export 10.0.0.2(rw)
|
/export 10.0.0.2(rw)
|
||||||
|
|||||||
@@ -91,7 +91,7 @@ RTC Real Time Clock
|
|||||||
RTCC Real Time Clock/Calendar
|
RTCC Real Time Clock/Calendar
|
||||||
RTOS Real Time Operating System
|
RTOS Real Time Operating System
|
||||||
SAIC Secure Advanced Interrupt Controller (Atmel SAM)
|
SAIC Secure Advanced Interrupt Controller (Atmel SAM)
|
||||||
SCI Serial Communications Inteface
|
SCI Serial Communications Interface
|
||||||
SD Secure Digital (flash memory)
|
SD Secure Digital (flash memory)
|
||||||
SDHC Secure Digital High Capacity (flash memory),
|
SDHC Secure Digital High Capacity (flash memory),
|
||||||
Secure Digital Host Controller (hardware)
|
Secure Digital Host Controller (hardware)
|
||||||
@@ -99,7 +99,7 @@ SDIO Secure Digital I/O
|
|||||||
SDRAM Synchronous Dynamic Random Access Memory
|
SDRAM Synchronous Dynamic Random Access Memory
|
||||||
SLCD Segment Liquid Crystal Display
|
SLCD Segment Liquid Crystal Display
|
||||||
SMC Static Memory Controller (hardware)
|
SMC Static Memory Controller (hardware)
|
||||||
SPI Serial Periperhal Interface
|
SPI Serial Peripheral Interface
|
||||||
SPRNG Scalable Parallel Random Number Generator
|
SPRNG Scalable Parallel Random Number Generator
|
||||||
SRAM Static RAM
|
SRAM Static RAM
|
||||||
SYSLOG System Log
|
SYSLOG System Log
|
||||||
@@ -117,5 +117,5 @@ WAN Wide Area Network (networking)
|
|||||||
WLAN Wireless Local Area Network (networking)
|
WLAN Wireless Local Area Network (networking)
|
||||||
WPAN Wireless Personal Area Network (networking)
|
WPAN Wireless Personal Area Network (networking)
|
||||||
WDT Watchdog Timer (hardware)
|
WDT Watchdog Timer (hardware)
|
||||||
XIP eExecute In Place
|
XIP eXecute In Place
|
||||||
XDMAC Extended DMA Controller (Atmel)
|
XDMAC Extended DMA Controller (Atmel)
|
||||||
|
|||||||
@@ -235,7 +235,7 @@ void up_initialize(void)
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if defined(USE_DEVCONSOLE)
|
#if defined(USE_DEVCONSOLE)
|
||||||
/* Start the sumulated UART device */
|
/* Start the simulated UART device */
|
||||||
|
|
||||||
simuart_start();
|
simuart_start();
|
||||||
|
|
||||||
|
|||||||
@@ -99,7 +99,7 @@ void tiva_boardinitialize(void)
|
|||||||
* If CONFIG_BOARD_LATE_INITIALIZE is selected, then an additional
|
* If CONFIG_BOARD_LATE_INITIALIZE is selected, then an additional
|
||||||
* initialization call will be performed in the boot-up sequence to a
|
* initialization call will be performed in the boot-up sequence to a
|
||||||
* function called board_late_initialize(). board_late_initialize() will be
|
* function called board_late_initialize(). board_late_initialize() will be
|
||||||
* called immediately after up_intiialize() is called and just before the
|
* called immediately after up_initialize() is called and just before the
|
||||||
* initial application is started. This additional initialization phase
|
* initial application is started. This additional initialization phase
|
||||||
* may be used, for example, to initialize board-specific device drivers.
|
* may be used, for example, to initialize board-specific device drivers.
|
||||||
*
|
*
|
||||||
|
|||||||
@@ -87,7 +87,7 @@ void pic32mz_boardinitialize(void)
|
|||||||
* If CONFIG_BOARD_LATE_INITIALIZE is selected, then an additional
|
* If CONFIG_BOARD_LATE_INITIALIZE is selected, then an additional
|
||||||
* initialization call will be performed in the boot-up sequence to a
|
* initialization call will be performed in the boot-up sequence to a
|
||||||
* function called board_late_initialize(). board_late_initialize() will be
|
* function called board_late_initialize(). board_late_initialize() will be
|
||||||
* called immediately after up_intiialize() is called and just before the
|
* called immediately after up_initialize() is called and just before the
|
||||||
* initial application is started. This additional initialization phase
|
* initial application is started. This additional initialization phase
|
||||||
* may be used, for example, to initialize board-specific device drivers.
|
* may be used, for example, to initialize board-specific device drivers.
|
||||||
*
|
*
|
||||||
|
|||||||
@@ -92,7 +92,7 @@ void stm32_boardinitialize(void)
|
|||||||
* If CONFIG_BOARD_LATE_INITIALIZE is selected, then an additional
|
* If CONFIG_BOARD_LATE_INITIALIZE is selected, then an additional
|
||||||
* initialization call will be performed in the boot-up sequence to a
|
* initialization call will be performed in the boot-up sequence to a
|
||||||
* function called board_late_initialize(). board_late_initialize() will be
|
* function called board_late_initialize(). board_late_initialize() will be
|
||||||
* called immediately after up_intiialize() is called and just before the
|
* called immediately after up_initialize() is called and just before the
|
||||||
* initial application is started. This additional initialization phase
|
* initial application is started. This additional initialization phase
|
||||||
* may be used, for example, to initialize board-specific device drivers.
|
* may be used, for example, to initialize board-specific device drivers.
|
||||||
*
|
*
|
||||||
|
|||||||
@@ -100,7 +100,7 @@ void stm32_boardinitialize(void)
|
|||||||
* If CONFIG_BOARD_LATE_INITIALIZE is selected, then an additional
|
* If CONFIG_BOARD_LATE_INITIALIZE is selected, then an additional
|
||||||
* initialization call will be performed in the boot-up sequence to a
|
* initialization call will be performed in the boot-up sequence to a
|
||||||
* function called board_late_initialize(). board_late_initialize() will
|
* function called board_late_initialize(). board_late_initialize() will
|
||||||
* be called immediately after up_intiialize() is called and just before
|
* be called immediately after up_initialize() is called and just before
|
||||||
* the initial application is started. This additional initialization
|
* the initial application is started. This additional initialization
|
||||||
* phase may be used, for example, to initialize board-specific device
|
* phase may be used, for example, to initialize board-specific device
|
||||||
* drivers.
|
* drivers.
|
||||||
|
|||||||
@@ -107,7 +107,7 @@ void stm32l4_board_initialize(void)
|
|||||||
* If CONFIG_BOARD_LATE_INITIALIZE is selected, then an additional
|
* If CONFIG_BOARD_LATE_INITIALIZE is selected, then an additional
|
||||||
* initialization call will be performed in the boot-up sequence to a
|
* initialization call will be performed in the boot-up sequence to a
|
||||||
* function called board_late_initialize(). board_late_initialize() will be
|
* function called board_late_initialize(). board_late_initialize() will be
|
||||||
* called immediately after up_intiialize() is called and just before the
|
* called immediately after up_initialize() is called and just before the
|
||||||
* initial application is started. This additional initialization phase
|
* initial application is started. This additional initialization phase
|
||||||
* may be used, for example, to initialize board-specific device drivers.
|
* may be used, for example, to initialize board-specific device drivers.
|
||||||
*
|
*
|
||||||
|
|||||||
@@ -98,7 +98,7 @@ void stm32l4_board_initialize(void)
|
|||||||
* If CONFIG_BOARD_LATE_INITIALIZE is selected, then an additional
|
* If CONFIG_BOARD_LATE_INITIALIZE is selected, then an additional
|
||||||
* initialization call will be performed in the boot-up sequence to a
|
* initialization call will be performed in the boot-up sequence to a
|
||||||
* function called board_late_initialize(). board_late_initialize() will be
|
* function called board_late_initialize(). board_late_initialize() will be
|
||||||
* called immediately after up_intiialize() is called and just before the
|
* called immediately after up_initialize() is called and just before the
|
||||||
* initial application is started. This additional initialization phase
|
* initial application is started. This additional initialization phase
|
||||||
* may be used, for example, to initialize board-specific device drivers.
|
* may be used, for example, to initialize board-specific device drivers.
|
||||||
*
|
*
|
||||||
|
|||||||
@@ -96,7 +96,7 @@ void stm32_boardinitialize(void)
|
|||||||
* If CONFIG_BOARD_LATE_INITIALIZE is selected, then an additional
|
* If CONFIG_BOARD_LATE_INITIALIZE is selected, then an additional
|
||||||
* initialization call will be performed in the boot-up sequence to a
|
* initialization call will be performed in the boot-up sequence to a
|
||||||
* function called board_late_initialize(). board_late_initialize() will be
|
* function called board_late_initialize(). board_late_initialize() will be
|
||||||
* called immediately after up_intiialize() is called and just before the
|
* called immediately after up_initialize() is called and just before the
|
||||||
* initial application is started. This additional initialization phase
|
* initial application is started. This additional initialization phase
|
||||||
* may be used, for example, to initialize board-specific device drivers.
|
* may be used, for example, to initialize board-specific device drivers.
|
||||||
*
|
*
|
||||||
|
|||||||
@@ -121,7 +121,7 @@ void stm32_boardinitialize(void)
|
|||||||
* If CONFIG_BOARD_LATE_INITIALIZE is selected, then an additional
|
* If CONFIG_BOARD_LATE_INITIALIZE is selected, then an additional
|
||||||
* initialization call will be performed in the boot-up sequence to a
|
* initialization call will be performed in the boot-up sequence to a
|
||||||
* function called board_late_initialize(). board_late_initialize() will be
|
* function called board_late_initialize(). board_late_initialize() will be
|
||||||
* called immediately after up_intiialize() is called and just before the
|
* called immediately after up_initialize() is called and just before the
|
||||||
* initial application is started. This additional initialization phase
|
* initial application is started. This additional initialization phase
|
||||||
* may be used, for example, to initialize board-specific device drivers.
|
* may be used, for example, to initialize board-specific device drivers.
|
||||||
*
|
*
|
||||||
|
|||||||
@@ -81,7 +81,7 @@ void a1x_boardinitialize(void)
|
|||||||
* If CONFIG_BOARD_LATE_INITIALIZE is selected, then an additional
|
* If CONFIG_BOARD_LATE_INITIALIZE is selected, then an additional
|
||||||
* initialization call will be performed in the boot-up sequence to a
|
* initialization call will be performed in the boot-up sequence to a
|
||||||
* function called board_late_initialize(). board_late_initialize() will be
|
* function called board_late_initialize(). board_late_initialize() will be
|
||||||
* called immediately after up_intiialize() is called and just before the
|
* called immediately after up_initialize() is called and just before the
|
||||||
* initial application is started. This additional initialization phase
|
* initial application is started. This additional initialization phase
|
||||||
* may be used, for example, to initialize board-specific device drivers.
|
* may be used, for example, to initialize board-specific device drivers.
|
||||||
*
|
*
|
||||||
|
|||||||
@@ -95,7 +95,7 @@ void pic32mz_boardinitialize(void)
|
|||||||
* If CONFIG_BOARD_LATE_INITIALIZE is selected, then an additional
|
* If CONFIG_BOARD_LATE_INITIALIZE is selected, then an additional
|
||||||
* initialization call will be performed in the boot-up sequence to a
|
* initialization call will be performed in the boot-up sequence to a
|
||||||
* function called board_late_initialize(). board_late_initialize() will be
|
* function called board_late_initialize(). board_late_initialize() will be
|
||||||
* called immediately after up_intiialize() is called and just before the
|
* called immediately after up_initialize() is called and just before the
|
||||||
* initial application is started. This additional initialization phase
|
* initial application is started. This additional initialization phase
|
||||||
* may be used, for example, to initialize board-specific device drivers.
|
* may be used, for example, to initialize board-specific device drivers.
|
||||||
*
|
*
|
||||||
|
|||||||
@@ -133,7 +133,7 @@ void sam_boardinitialize(void)
|
|||||||
* If CONFIG_BOARD_LATE_INITIALIZE is selected, then an additional
|
* If CONFIG_BOARD_LATE_INITIALIZE is selected, then an additional
|
||||||
* initialization call will be performed in the boot-up sequence to a
|
* initialization call will be performed in the boot-up sequence to a
|
||||||
* function called board_late_initialize(). board_late_initialize() will be
|
* function called board_late_initialize(). board_late_initialize() will be
|
||||||
* called immediately after up_intiialize() is called and just before the
|
* called immediately after up_initialize() is called and just before the
|
||||||
* initial application is started. This additional initialization phase
|
* initial application is started. This additional initialization phase
|
||||||
* may be used, for example, to initialize board-specific device drivers.
|
* may be used, for example, to initialize board-specific device drivers.
|
||||||
*
|
*
|
||||||
|
|||||||
@@ -83,7 +83,7 @@ void sam_boardinitialize(void)
|
|||||||
* If CONFIG_BOARD_LATE_INITIALIZE is selected, then an additional
|
* If CONFIG_BOARD_LATE_INITIALIZE is selected, then an additional
|
||||||
* initialization call will be performed in the boot-up sequence to a
|
* initialization call will be performed in the boot-up sequence to a
|
||||||
* function called board_late_initialize(). board_late_initialize() will be
|
* function called board_late_initialize(). board_late_initialize() will be
|
||||||
* called immediately after up_intiialize() is called and just before the
|
* called immediately after up_initialize() is called and just before the
|
||||||
* initial application is started. This additional initialization phase
|
* initial application is started. This additional initialization phase
|
||||||
* may be used, for example, to initialize board-specific device drivers.
|
* may be used, for example, to initialize board-specific device drivers.
|
||||||
*
|
*
|
||||||
|
|||||||
@@ -138,7 +138,7 @@ void sam_boardinitialize(void)
|
|||||||
* If CONFIG_BOARD_LATE_INITIALIZE is selected, then an additional
|
* If CONFIG_BOARD_LATE_INITIALIZE is selected, then an additional
|
||||||
* initialization call will be performed in the boot-up sequence to a
|
* initialization call will be performed in the boot-up sequence to a
|
||||||
* function called board_late_initialize(). board_late_initialize() will be
|
* function called board_late_initialize(). board_late_initialize() will be
|
||||||
* called immediately after up_intiialize() is called and just before the
|
* called immediately after up_initialize() is called and just before the
|
||||||
* initial application is started. This additional initialization phase
|
* initial application is started. This additional initialization phase
|
||||||
* may be used, for example, to initialize board-specific device drivers.
|
* may be used, for example, to initialize board-specific device drivers.
|
||||||
*
|
*
|
||||||
|
|||||||
@@ -138,7 +138,7 @@ void sam_boardinitialize(void)
|
|||||||
* If CONFIG_BOARD_LATE_INITIALIZE is selected, then an additional
|
* If CONFIG_BOARD_LATE_INITIALIZE is selected, then an additional
|
||||||
* initialization call will be performed in the boot-up sequence to a
|
* initialization call will be performed in the boot-up sequence to a
|
||||||
* function called board_late_initialize(). board_late_initialize() will be
|
* function called board_late_initialize(). board_late_initialize() will be
|
||||||
* called immediately after up_intiialize() is called and just before the
|
* called immediately after up_initialize() is called and just before the
|
||||||
* initial application is started. This additional initialization phase
|
* initial application is started. This additional initialization phase
|
||||||
* may be used, for example, to initialize board-specific device drivers.
|
* may be used, for example, to initialize board-specific device drivers.
|
||||||
*
|
*
|
||||||
|
|||||||
@@ -139,7 +139,7 @@ void sam_boardinitialize(void)
|
|||||||
* If CONFIG_BOARD_LATE_INITIALIZE is selected, then an additional
|
* If CONFIG_BOARD_LATE_INITIALIZE is selected, then an additional
|
||||||
* initialization call will be performed in the boot-up sequence to a
|
* initialization call will be performed in the boot-up sequence to a
|
||||||
* function called board_late_initialize(). board_late_initialize() will be
|
* function called board_late_initialize(). board_late_initialize() will be
|
||||||
* called immediately after up_intiialize() is called and just before the
|
* called immediately after up_initialize() is called and just before the
|
||||||
* initial application is started. This additional initialization phase
|
* initial application is started. This additional initialization phase
|
||||||
* may be used, for example, to initialize board-specific device drivers.
|
* may be used, for example, to initialize board-specific device drivers.
|
||||||
*
|
*
|
||||||
|
|||||||
@@ -53,7 +53,7 @@
|
|||||||
* If CONFIG_BOARD_LATE_INITIALIZE is selected, then an additional
|
* If CONFIG_BOARD_LATE_INITIALIZE is selected, then an additional
|
||||||
* initialization call will be performed in the boot-up sequence to a
|
* initialization call will be performed in the boot-up sequence to a
|
||||||
* function called board_late_initialize(). board_late_initialize() will be
|
* function called board_late_initialize(). board_late_initialize() will be
|
||||||
* called immediately after up_intiialize() is called and just before the
|
* called immediately after up_initialize() is called and just before the
|
||||||
* initial application is started. This additional initialization phase
|
* initial application is started. This additional initialization phase
|
||||||
* may be used, for example, to initialize board-specific device drivers.
|
* may be used, for example, to initialize board-specific device drivers.
|
||||||
*
|
*
|
||||||
|
|||||||
@@ -97,7 +97,7 @@ void stm32_boardinitialize(void)
|
|||||||
* If CONFIG_BOARD_LATE_INITIALIZE is selected, then an additional
|
* If CONFIG_BOARD_LATE_INITIALIZE is selected, then an additional
|
||||||
* initialization call will be performed in the boot-up sequence to a
|
* initialization call will be performed in the boot-up sequence to a
|
||||||
* function called board_late_initialize(). board_late_initialize() will be
|
* function called board_late_initialize(). board_late_initialize() will be
|
||||||
* called immediately after up_intiialize() is called and just before the
|
* called immediately after up_initialize() is called and just before the
|
||||||
* initial application is started. This additional initialization phase
|
* initial application is started. This additional initialization phase
|
||||||
* may be used, for example, to initialize board-specific device drivers.
|
* may be used, for example, to initialize board-specific device drivers.
|
||||||
*
|
*
|
||||||
|
|||||||
@@ -114,7 +114,7 @@ void stm32_boardinitialize(void)
|
|||||||
* If CONFIG_BOARD_LATE_INITIALIZE is selected, then an additional
|
* If CONFIG_BOARD_LATE_INITIALIZE is selected, then an additional
|
||||||
* initialization call will be performed in the boot-up sequence to a
|
* initialization call will be performed in the boot-up sequence to a
|
||||||
* function called board_late_initialize(). board_late_initialize() will be
|
* function called board_late_initialize(). board_late_initialize() will be
|
||||||
* called immediately after up_intiialize() is called and just before the
|
* called immediately after up_initialize() is called and just before the
|
||||||
* initial application is started. This additional initialization phase
|
* initial application is started. This additional initialization phase
|
||||||
* may be used, for example, to initialize board-specific device drivers.
|
* may be used, for example, to initialize board-specific device drivers.
|
||||||
*
|
*
|
||||||
|
|||||||
@@ -89,7 +89,7 @@ void stm32l4_board_initialize(void)
|
|||||||
* If CONFIG_BOARD_LATE_INITIALIZE is selected, then an additional
|
* If CONFIG_BOARD_LATE_INITIALIZE is selected, then an additional
|
||||||
* initialization call will be performed in the boot-up sequence to a
|
* initialization call will be performed in the boot-up sequence to a
|
||||||
* function called board_late_initialize(). board_late_initialize() will be
|
* function called board_late_initialize(). board_late_initialize() will be
|
||||||
* called immediately after up_intiialize() is called and just before the
|
* called immediately after up_initialize() is called and just before the
|
||||||
* initial application is started. This additional initialization phase
|
* initial application is started. This additional initialization phase
|
||||||
* may be used, for example, to initialize board-specific device drivers.
|
* may be used, for example, to initialize board-specific device drivers.
|
||||||
*
|
*
|
||||||
|
|||||||
@@ -98,7 +98,7 @@ void stm32l4_board_initialize(void)
|
|||||||
* If CONFIG_BOARD_LATE_INITIALIZE is selected, then an additional
|
* If CONFIG_BOARD_LATE_INITIALIZE is selected, then an additional
|
||||||
* initialization call will be performed in the boot-up sequence to a
|
* initialization call will be performed in the boot-up sequence to a
|
||||||
* function called board_late_initialize(). board_late_initialize() will be
|
* function called board_late_initialize(). board_late_initialize() will be
|
||||||
* called immediately after up_intiialize() is called and just before the
|
* called immediately after up_initialize() is called and just before the
|
||||||
* initial application is started. This additional initialization phase
|
* initial application is started. This additional initialization phase
|
||||||
* may be used, for example, to initialize board-specific device drivers.
|
* may be used, for example, to initialize board-specific device drivers.
|
||||||
*
|
*
|
||||||
|
|||||||
@@ -94,7 +94,7 @@ void stm32l4_board_initialize(void)
|
|||||||
* If CONFIG_BOARD_LATE_INITIALIZE is selected, then an additional
|
* If CONFIG_BOARD_LATE_INITIALIZE is selected, then an additional
|
||||||
* initialization call will be performed in the boot-up sequence to a
|
* initialization call will be performed in the boot-up sequence to a
|
||||||
* function called board_late_initialize(). board_late_initialize() will be
|
* function called board_late_initialize(). board_late_initialize() will be
|
||||||
* called immediately after up_intiialize() is called and just before the
|
* called immediately after up_initialize() is called and just before the
|
||||||
* initial application is started. This additional initialization phase
|
* initial application is started. This additional initialization phase
|
||||||
* may be used, for example, to initialize board-specific device drivers.
|
* may be used, for example, to initialize board-specific device drivers.
|
||||||
*
|
*
|
||||||
|
|||||||
@@ -99,7 +99,7 @@ void tiva_boardinitialize(void)
|
|||||||
* If CONFIG_BOARD_LATE_INITIALIZE is selected, then an additional
|
* If CONFIG_BOARD_LATE_INITIALIZE is selected, then an additional
|
||||||
* initialization call will be performed in the boot-up sequence to a
|
* initialization call will be performed in the boot-up sequence to a
|
||||||
* function called board_late_initialize(). board_late_initialize() will be
|
* function called board_late_initialize(). board_late_initialize() will be
|
||||||
* called immediately after up_intiialize() is called and just before the
|
* called immediately after up_initialize() is called and just before the
|
||||||
* initial application is started. This additional initialization phase
|
* initial application is started. This additional initialization phase
|
||||||
* may be used, for example, to initialize board-specific device drivers.
|
* may be used, for example, to initialize board-specific device drivers.
|
||||||
*
|
*
|
||||||
|
|||||||
@@ -99,7 +99,7 @@ void tiva_boardinitialize(void)
|
|||||||
* If CONFIG_BOARD_LATE_INITIALIZE is selected, then an additional
|
* If CONFIG_BOARD_LATE_INITIALIZE is selected, then an additional
|
||||||
* initialization call will be performed in the boot-up sequence to a
|
* initialization call will be performed in the boot-up sequence to a
|
||||||
* function called board_late_initialize(). board_late_initialize() will be
|
* function called board_late_initialize(). board_late_initialize() will be
|
||||||
* called immediately after up_intiialize() is called and just before the
|
* called immediately after up_initialize() is called and just before the
|
||||||
* initial application is started. This additional initialization phase
|
* initial application is started. This additional initialization phase
|
||||||
* may be used, for example, to initialize board-specific device drivers.
|
* may be used, for example, to initialize board-specific device drivers.
|
||||||
*
|
*
|
||||||
|
|||||||
@@ -52,6 +52,7 @@
|
|||||||
/****************************************************************************
|
/****************************************************************************
|
||||||
* Pre-processor Definitions
|
* Pre-processor Definitions
|
||||||
****************************************************************************/
|
****************************************************************************/
|
||||||
|
|
||||||
/* Are we using the system timer, or an external clock? Get the rate
|
/* Are we using the system timer, or an external clock? Get the rate
|
||||||
* of the sampling in ticks per second for the selected timer.
|
* of the sampling in ticks per second for the selected timer.
|
||||||
*/
|
*/
|
||||||
@@ -66,7 +67,7 @@
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
/* When g_cpuload_total exceeds the following time constant, the load and
|
/* When g_cpuload_total exceeds the following time constant, the load and
|
||||||
* the counds will be scaled back by two. In the CONFIG_SMP, g_cpuload_total
|
* the counts will be scaled back by two. In the CONFIG_SMP, g_cpuload_total
|
||||||
* will be incremented multiple times per tick.
|
* will be incremented multiple times per tick.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user