mirror of
https://github.com/apache/nuttx.git
synced 2026-05-31 23:40:19 +08:00
Fix some typos. Mostly inital->initial.
This commit is contained in:
committed by
Gregory Nutt
parent
5a73b54dc7
commit
c3d24571fb
@@ -13417,7 +13417,7 @@
|
|||||||
* STM32 F7: Fix some STM32F7 copy paste errors. From David Sidrane
|
* STM32 F7: Fix some STM32F7 copy paste errors. From David Sidrane
|
||||||
(2016-12-17).
|
(2016-12-17).
|
||||||
* CDC/ACM Device Class: uart_ops_s portion of cdcacm will not be
|
* CDC/ACM Device Class: uart_ops_s portion of cdcacm will not be
|
||||||
initalized with correct functions if CONFIG_SERIAL_DMA is lit
|
initialized with correct functions if CONFIG_SERIAL_DMA is set
|
||||||
(2016-12-17).
|
(2016-12-17).
|
||||||
* Xtensa ESP32: Using wrong register to disable interrupts (2016-12-17).
|
* Xtensa ESP32: Using wrong register to disable interrupts (2016-12-17).
|
||||||
* Xtensa ESP32: Fix clobbered a9 in co-processor context save/restore
|
* Xtensa ESP32: Fix clobbered a9 in co-processor context save/restore
|
||||||
@@ -15417,8 +15417,8 @@
|
|||||||
only resets the resources within the controller that should be reset.
|
only resets the resources within the controller that should be reset.
|
||||||
Rework suspend and resume logic so they perform properly. Made attach
|
Rework suspend and resume logic so they perform properly. Made attach
|
||||||
and detach functions optional. As they do not make sense for a bus
|
and detach functions optional. As they do not make sense for a bus
|
||||||
powered device. Ensured the calls to up_usbinitalize
|
powered device. Ensured the calls to up_usbinitialize
|
||||||
up_usbuninitalize do not violate the USB spec. From David Sidrane
|
up_usbuninitialize do not violate the USB spec. From David Sidrane
|
||||||
(2017-06-02).
|
(2017-06-02).
|
||||||
* WIP: wireless/ieee802154: More work on association/beacon-enabled
|
* WIP: wireless/ieee802154: More work on association/beacon-enabled
|
||||||
networks. From Anthony Merlino (2017-06-02).
|
networks. From Anthony Merlino (2017-06-02).
|
||||||
@@ -15464,8 +15464,8 @@
|
|||||||
* teensy-3.x:Refreshed config and made board self powered. From David
|
* teensy-3.x:Refreshed config and made board self powered. From David
|
||||||
Sidrane (2017-06-06).
|
Sidrane (2017-06-06).
|
||||||
* Kinetis:USB-FS driver. Removed the notion of attached. The
|
* Kinetis:USB-FS driver. Removed the notion of attached. The
|
||||||
khci_usbattach is call early in the init either in board_initalize or
|
khci_usbattach is call early in the init either in board_initialize or
|
||||||
in board_app_initalize. In either case it is always done prior to the
|
in board_app_initialize. In either case it is always done prior to the
|
||||||
the class register. Therefore the khci_usbattach call only set a
|
the class register. Therefore the khci_usbattach call only set a
|
||||||
flag, and that flag is only tested in the class register. The class
|
flag, and that flag is only tested in the class register. The class
|
||||||
register will enable the soft connect pull up. From David Sidrane
|
register will enable the soft connect pull up. From David Sidrane
|
||||||
@@ -25857,8 +25857,8 @@
|
|||||||
* stm32h7 RTC and friends support
|
* stm32h7 RTC and friends support
|
||||||
- STM32H7: Removed f7 in file path
|
- STM32H7: Removed f7 in file path
|
||||||
- STM32F7: Fix overwritten IRQ enabled. System boot order calls
|
- STM32F7: Fix overwritten IRQ enabled. System boot order calls
|
||||||
clock_initialize then up_initalize. clock_initialize was setting up
|
clock_initialize then up_initialize. clock_initialize was setting up
|
||||||
the alarm IRQ up_initalize is initializing the NVIC. This most likely
|
the alarm IRQ up_initialize is initializing the NVIC. This most likely
|
||||||
worked in the past due to a bug in the NVIC init code that failed to
|
worked in the past due to a bug in the NVIC init code that failed to
|
||||||
clear the Interrupt enables. That was fixed in 510b0f7e
|
clear the Interrupt enables. That was fixed in 510b0f7e
|
||||||
arch/arm/src: Correct all ARMv7-M architectures. Interrupts were
|
arch/arm/src: Correct all ARMv7-M architectures. Interrupts were
|
||||||
|
|||||||
+3
-3
@@ -12773,7 +12773,7 @@ detailed bugfix information):
|
|||||||
supported class and proto. From Janne Rosberg.
|
supported class and proto. From Janne Rosberg.
|
||||||
- SSD1306: Fix errors in SPI mode configuration. From Gong Darcy.
|
- SSD1306: Fix errors in SPI mode configuration. From Gong Darcy.
|
||||||
- CDC/ACM Device Class: uart_ops_s portion of cdcacm will not be
|
- CDC/ACM Device Class: uart_ops_s portion of cdcacm will not be
|
||||||
initalized with correct functions if CONFIG_SERIAL_DMA is selected.
|
initialized with correct functions if CONFIG_SERIAL_DMA is selected.
|
||||||
|
|
||||||
* Networking/Network Drivers:
|
* Networking/Network Drivers:
|
||||||
|
|
||||||
@@ -25432,8 +25432,8 @@ information):
|
|||||||
- STM327F Configuration: Kconfig add depends on BBSRAM. From David
|
- STM327F Configuration: Kconfig add depends on BBSRAM. From David
|
||||||
Sidrane.
|
Sidrane.
|
||||||
- STM32F7 Interrupts: Fix overwritten IRQ enable. System boot order
|
- STM32F7 Interrupts: Fix overwritten IRQ enable. System boot order
|
||||||
calls clock_initialize() then up_initalize(). clock_initialize()
|
calls clock_initialize() then up_initialize(). clock_initialize()
|
||||||
was setting up the alarm IRQ up_initalize is initializing the NVIC.
|
was setting up the alarm IRQ up_initialize is initializing the NVIC.
|
||||||
This most likely worked in the past due to a bug in the NVIC
|
This most likely worked in the past due to a bug in the NVIC
|
||||||
initialization code that failed to clear the Interrupt enables.
|
initialization code that failed to clear the Interrupt enables.
|
||||||
- STM32H7: Rix BBSRAM name in memory map. From David Sidrane.
|
- STM32H7: Rix BBSRAM name in memory map. From David Sidrane.
|
||||||
|
|||||||
@@ -223,8 +223,8 @@ int up_allocpage(FAR struct tcb_s *tcb, FAR void **vpage)
|
|||||||
|
|
||||||
/* Now setup up the new mapping. Get a pointer to the L2 entry
|
/* Now setup up the new mapping. Get a pointer to the L2 entry
|
||||||
* corresponding to the new mapping. Then set it map to the newly
|
* corresponding to the new mapping. Then set it map to the newly
|
||||||
* allocated page address. The inital mapping is read/write but
|
* allocated page address. The initial mapping is read/write but
|
||||||
* non-cached (MMU_L2_ALLOCFLAGS)
|
* non-cached (MMU_L2_ALLOCFLAGS).
|
||||||
*/
|
*/
|
||||||
|
|
||||||
pte = up_va2pte(vaddr);
|
pte = up_va2pte(vaddr);
|
||||||
|
|||||||
@@ -214,8 +214,8 @@ int arm_allocpage(FAR struct tcb_s *tcb, FAR void **vpage)
|
|||||||
|
|
||||||
/* Now setup up the new mapping. Get a pointer to the L2 entry
|
/* Now setup up the new mapping. Get a pointer to the L2 entry
|
||||||
* corresponding to the new mapping. Then set it map to the newly
|
* corresponding to the new mapping. Then set it map to the newly
|
||||||
* allocated page address. The inital mapping is read/write but
|
* allocated page address. The initial mapping is read/write but
|
||||||
* non-cached (MMU_L2_ALLOCFLAGS)
|
* non-cached (MMU_L2_ALLOCFLAGS).
|
||||||
*/
|
*/
|
||||||
|
|
||||||
pte = arm_va2pte(vaddr);
|
pte = arm_va2pte(vaddr);
|
||||||
|
|||||||
@@ -621,8 +621,8 @@ static void khci_reset(struct khci_usbdev_s *priv);
|
|||||||
static void khci_attach(struct khci_usbdev_s *priv);
|
static void khci_attach(struct khci_usbdev_s *priv);
|
||||||
static void khci_swreset(struct khci_usbdev_s *priv);
|
static void khci_swreset(struct khci_usbdev_s *priv);
|
||||||
static void khci_hwreset(struct khci_usbdev_s *priv);
|
static void khci_hwreset(struct khci_usbdev_s *priv);
|
||||||
static void khci_swinitalize(struct khci_usbdev_s *priv);
|
static void khci_swinitialize(struct khci_usbdev_s *priv);
|
||||||
static void khci_hwinitalize(struct khci_usbdev_s *priv);
|
static void khci_hwinitialize(struct khci_usbdev_s *priv);
|
||||||
static void khci_hwshutdown(struct khci_usbdev_s *priv);
|
static void khci_hwshutdown(struct khci_usbdev_s *priv);
|
||||||
|
|
||||||
/****************************************************************************
|
/****************************************************************************
|
||||||
@@ -4183,14 +4183,14 @@ static void khci_hwreset(struct khci_usbdev_s *priv)
|
|||||||
}
|
}
|
||||||
|
|
||||||
/****************************************************************************
|
/****************************************************************************
|
||||||
* Name: khci_hwinitalize
|
* Name: khci_hwinitialize
|
||||||
*
|
*
|
||||||
* Description:
|
* Description:
|
||||||
* Reset the hardware and leave it in a known, unready state.
|
* Reset the hardware and leave it in a known, unready state.
|
||||||
*
|
*
|
||||||
****************************************************************************/
|
****************************************************************************/
|
||||||
|
|
||||||
static void khci_hwinitalize(struct khci_usbdev_s *priv)
|
static void khci_hwinitialize(struct khci_usbdev_s *priv)
|
||||||
{
|
{
|
||||||
uint32_t regval;
|
uint32_t regval;
|
||||||
|
|
||||||
@@ -4243,10 +4243,10 @@ static void khci_hwinitalize(struct khci_usbdev_s *priv)
|
|||||||
}
|
}
|
||||||
|
|
||||||
/****************************************************************************
|
/****************************************************************************
|
||||||
* Name: khci_swinitalize
|
* Name: khci_swinitialize
|
||||||
****************************************************************************/
|
****************************************************************************/
|
||||||
|
|
||||||
static void khci_swinitalize(struct khci_usbdev_s *priv)
|
static void khci_swinitialize(struct khci_usbdev_s *priv)
|
||||||
{
|
{
|
||||||
int epno;
|
int epno;
|
||||||
|
|
||||||
@@ -4358,7 +4358,7 @@ void up_usbinitialize(void)
|
|||||||
|
|
||||||
/* Initialize the driver state structure */
|
/* Initialize the driver state structure */
|
||||||
|
|
||||||
khci_swinitalize(priv);
|
khci_swinitialize(priv);
|
||||||
|
|
||||||
/* Select clock source:
|
/* Select clock source:
|
||||||
* SIM_SOPT2[PLLFLLSEL] and SIM_CLKDIV2[USBFRAC, USBDIV] will have been
|
* SIM_SOPT2[PLLFLLSEL] and SIM_CLKDIV2[USBFRAC, USBDIV] will have been
|
||||||
@@ -4404,7 +4404,7 @@ void up_usbinitialize(void)
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
khci_hwinitalize(priv);
|
khci_hwinitialize(priv);
|
||||||
}
|
}
|
||||||
|
|
||||||
/****************************************************************************
|
/****************************************************************************
|
||||||
@@ -4578,7 +4578,7 @@ int usbdev_unregister(struct usbdevclass_driver_s *driver)
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
khci_hwshutdown(priv);
|
khci_hwshutdown(priv);
|
||||||
khci_swinitalize(priv);
|
khci_swinitialize(priv);
|
||||||
|
|
||||||
leave_critical_section(flags);
|
leave_critical_section(flags);
|
||||||
return OK;
|
return OK;
|
||||||
|
|||||||
@@ -127,7 +127,7 @@
|
|||||||
* .... .... V... ....
|
* .... .... V... ....
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#define GPIO_OUTPUT_SET (1 << 7) /* Bit 7: If output, inital value of output */
|
#define GPIO_OUTPUT_SET (1 << 7) /* Bit 7: If output, initial value of output */
|
||||||
#define GPIO_OUTPUT_CLEAR (0)
|
#define GPIO_OUTPUT_CLEAR (0)
|
||||||
|
|
||||||
/* This identifies the GPIO port:
|
/* This identifies the GPIO port:
|
||||||
|
|||||||
@@ -1397,7 +1397,7 @@ struct i2c_master_s *sam_i2c_master_initialize(int bus)
|
|||||||
}
|
}
|
||||||
|
|
||||||
/*******************************************************************************
|
/*******************************************************************************
|
||||||
* Name: sam_i2c_uninitalize
|
* Name: sam_i2c_uninitialize
|
||||||
*
|
*
|
||||||
* Description:
|
* Description:
|
||||||
* Uninitialize an I2C device
|
* Uninitialize an I2C device
|
||||||
|
|||||||
@@ -1435,7 +1435,7 @@ struct i2c_master_s *sam_i2c_master_initialize(int bus)
|
|||||||
}
|
}
|
||||||
|
|
||||||
/*******************************************************************************
|
/*******************************************************************************
|
||||||
* Name: sam_i2c_uninitalize
|
* Name: sam_i2c_uninitialize
|
||||||
*
|
*
|
||||||
* Description:
|
* Description:
|
||||||
* Uninitialize an I2C device
|
* Uninitialize an I2C device
|
||||||
|
|||||||
@@ -106,7 +106,7 @@
|
|||||||
* .... .... V... ....
|
* .... .... V... ....
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#define GPIO_OUTPUT_SET (1 << 7) /* Bit 7: If output, inital value of output */
|
#define GPIO_OUTPUT_SET (1 << 7) /* Bit 7: If output, initial value of output */
|
||||||
#define GPIO_OUTPUT_CLEAR (0)
|
#define GPIO_OUTPUT_CLEAR (0)
|
||||||
|
|
||||||
/* These bits set the primary function of the pin:
|
/* These bits set the primary function of the pin:
|
||||||
@@ -328,7 +328,7 @@
|
|||||||
* .... .... ...V .... ....
|
* .... .... ...V .... ....
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#define GPIO_OUTPUT_SET (1 << 8) /* Bit 8: If output, inital value of output */
|
#define GPIO_OUTPUT_SET (1 << 8) /* Bit 8: If output, initial value of output */
|
||||||
#define GPIO_OUTPUT_CLEAR (0)
|
#define GPIO_OUTPUT_CLEAR (0)
|
||||||
|
|
||||||
/* External interrupt selection (GPIO inputs only):
|
/* External interrupt selection (GPIO inputs only):
|
||||||
|
|||||||
@@ -176,7 +176,7 @@
|
|||||||
* .... .... ...V .... ....
|
* .... .... ...V .... ....
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#define GPIO_OUTPUT_SET (1 << 8) /* Bit 8: If output, inital value of output */
|
#define GPIO_OUTPUT_SET (1 << 8) /* Bit 8: If output, initial value of output */
|
||||||
#define GPIO_OUTPUT_CLEAR (0)
|
#define GPIO_OUTPUT_CLEAR (0)
|
||||||
|
|
||||||
/* External interrupt selection (GPIO inputs only):
|
/* External interrupt selection (GPIO inputs only):
|
||||||
|
|||||||
@@ -172,7 +172,7 @@
|
|||||||
* .... .... ...V .... ....
|
* .... .... ...V .... ....
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#define GPIO_OUTPUT_SET (1 << 8) /* Bit 8: If output, inital value of output */
|
#define GPIO_OUTPUT_SET (1 << 8) /* Bit 8: If output, initial value of output */
|
||||||
#define GPIO_OUTPUT_CLEAR (0)
|
#define GPIO_OUTPUT_CLEAR (0)
|
||||||
|
|
||||||
/* External interrupt selection (GPIO inputs only):
|
/* External interrupt selection (GPIO inputs only):
|
||||||
|
|||||||
@@ -172,7 +172,7 @@
|
|||||||
* .... .... ...V .... ....
|
* .... .... ...V .... ....
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#define GPIO_OUTPUT_SET (1 << 8) /* Bit 8: If output, inital value of output */
|
#define GPIO_OUTPUT_SET (1 << 8) /* Bit 8: If output, initial value of output */
|
||||||
#define GPIO_OUTPUT_CLEAR (0)
|
#define GPIO_OUTPUT_CLEAR (0)
|
||||||
|
|
||||||
/* External interrupt selection (GPIO inputs only):
|
/* External interrupt selection (GPIO inputs only):
|
||||||
|
|||||||
@@ -181,7 +181,7 @@
|
|||||||
* .... .... ...V .... ....
|
* .... .... ...V .... ....
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#define GPIO_OUTPUT_SET (1 << 8) /* Bit 8: If output, inital value of output */
|
#define GPIO_OUTPUT_SET (1 << 8) /* Bit 8: If output, initial value of output */
|
||||||
#define GPIO_OUTPUT_CLEAR (0)
|
#define GPIO_OUTPUT_CLEAR (0)
|
||||||
|
|
||||||
/* External interrupt selection (GPIO inputs only):
|
/* External interrupt selection (GPIO inputs only):
|
||||||
|
|||||||
@@ -217,7 +217,7 @@
|
|||||||
* .... .... .... .... .... ...V .... ....
|
* .... .... .... .... .... ...V .... ....
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#define GPIO_VALUE_SHIFT 8 /* Bit 8: If output, inital value of output */
|
#define GPIO_VALUE_SHIFT 8 /* Bit 8: If output, initial value of output */
|
||||||
#define GPIO_VALUE_MASK (1 << GPIO_VALUE_SHIFT)
|
#define GPIO_VALUE_MASK (1 << GPIO_VALUE_SHIFT)
|
||||||
# define GPIO_VALUE_ZERO (0 << GPIO_VALUE_SHIFT) /* Initial value is zero */
|
# define GPIO_VALUE_ZERO (0 << GPIO_VALUE_SHIFT) /* Initial value is zero */
|
||||||
# define GPIO_VALUE_ONE (1 << GPIO_VALUE_SHIFT) /* Initial value is one */
|
# define GPIO_VALUE_ONE (1 << GPIO_VALUE_SHIFT) /* Initial value is one */
|
||||||
|
|||||||
@@ -218,7 +218,7 @@
|
|||||||
* .... .... .... .... .... ...V .... ....
|
* .... .... .... .... .... ...V .... ....
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#define GPIO_VALUE_SHIFT 8 /* Bit 8: If output, inital value of output */
|
#define GPIO_VALUE_SHIFT 8 /* Bit 8: If output, initial value of output */
|
||||||
#define GPIO_VALUE_MASK (1 << GPIO_VALUE_SHIFT)
|
#define GPIO_VALUE_MASK (1 << GPIO_VALUE_SHIFT)
|
||||||
# define GPIO_VALUE_ZERO (0 << GPIO_VALUE_SHIFT) /* Initial value is zero */
|
# define GPIO_VALUE_ZERO (0 << GPIO_VALUE_SHIFT) /* Initial value is zero */
|
||||||
# define GPIO_VALUE_ONE (1 << GPIO_VALUE_SHIFT) /* Initial value is one */
|
# define GPIO_VALUE_ONE (1 << GPIO_VALUE_SHIFT) /* Initial value is one */
|
||||||
|
|||||||
@@ -204,7 +204,7 @@
|
|||||||
* .... .... .... .... .... ...V .... ....
|
* .... .... .... .... .... ...V .... ....
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#define GPIO_VALUE_SHIFT 8 /* Bit 8: If output, inital value of output */
|
#define GPIO_VALUE_SHIFT 8 /* Bit 8: If output, initial value of output */
|
||||||
#define GPIO_VALUE_MASK (1 << GPIO_VALUE_SHIFT)
|
#define GPIO_VALUE_MASK (1 << GPIO_VALUE_SHIFT)
|
||||||
# define GPIO_VALUE_ZERO (0 << GPIO_VALUE_SHIFT) /* Initial value is zero */
|
# define GPIO_VALUE_ZERO (0 << GPIO_VALUE_SHIFT) /* Initial value is zero */
|
||||||
# define GPIO_VALUE_ONE (1 << GPIO_VALUE_SHIFT) /* Initial value is one */
|
# define GPIO_VALUE_ONE (1 << GPIO_VALUE_SHIFT) /* Initial value is one */
|
||||||
|
|||||||
@@ -140,7 +140,7 @@ int up_create_stack(FAR struct tcb_s *tcb, size_t stack_size, uint8_t ttype)
|
|||||||
{
|
{
|
||||||
/* This is the address of the last aligned word in the allocation.
|
/* This is the address of the last aligned word in the allocation.
|
||||||
* NOTE that stack_alloc_ptr + adj_stack_size may lie one byte
|
* NOTE that stack_alloc_ptr + adj_stack_size may lie one byte
|
||||||
* outside of the stack. This is okay for an inital state; the
|
* outside of the stack. This is okay for an initial state; the
|
||||||
* first pushed values will be within the stack allocation.
|
* first pushed values will be within the stack allocation.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|||||||
@@ -114,7 +114,7 @@ int up_use_stack(FAR struct tcb_s *tcb, FAR void *stack, size_t stack_size)
|
|||||||
|
|
||||||
/* This is the address of the last word in the allocation.
|
/* This is the address of the last word in the allocation.
|
||||||
* NOTE that stack_alloc_ptr + adj_stack_size may lie one byte
|
* NOTE that stack_alloc_ptr + adj_stack_size may lie one byte
|
||||||
* outside of the stack. This is okay for an inital state; the
|
* outside of the stack. This is okay for an initial state; the
|
||||||
* first pushed values will be within the stack allocation.
|
* first pushed values will be within the stack allocation.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|||||||
@@ -193,7 +193,7 @@ static int up_x11untraperrors(void)
|
|||||||
|
|
||||||
static void up_x11uninitX(void)
|
static void up_x11uninitX(void)
|
||||||
{
|
{
|
||||||
fprintf(stderr, "Uninitalizing X\n");
|
fprintf(stderr, "Uninitializing X\n");
|
||||||
if (g_x11initialized)
|
if (g_x11initialized)
|
||||||
{
|
{
|
||||||
#ifndef CONFIG_SIM_X11NOSHM
|
#ifndef CONFIG_SIM_X11NOSHM
|
||||||
@@ -236,7 +236,7 @@ static void up_x11uninitX(void)
|
|||||||
#ifndef CONFIG_SIM_X11NOSHM
|
#ifndef CONFIG_SIM_X11NOSHM
|
||||||
static void up_x11uninitialize(void)
|
static void up_x11uninitialize(void)
|
||||||
{
|
{
|
||||||
fprintf(stderr, "Uninitalizing\n");
|
fprintf(stderr, "Uninitializing\n");
|
||||||
if (g_shmcheckpoint > 1)
|
if (g_shmcheckpoint > 1)
|
||||||
{
|
{
|
||||||
if (!b_useshm && g_framebuffer)
|
if (!b_useshm && g_framebuffer)
|
||||||
|
|||||||
@@ -141,7 +141,7 @@ int k66_bringup(void)
|
|||||||
if (ret < 0)
|
if (ret < 0)
|
||||||
{
|
{
|
||||||
syslog(LOG_ERR,
|
syslog(LOG_ERR,
|
||||||
"ERROR: Failed to initalize the RTC driver: %d\n",
|
"ERROR: Failed to initialize the RTC driver: %d\n",
|
||||||
ret);
|
ret);
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|||||||
@@ -1533,7 +1533,7 @@ Configuration Sub-directories
|
|||||||
|
|
||||||
a. Telnet does work with IPv6 but is not enabled in this
|
a. Telnet does work with IPv6 but is not enabled in this
|
||||||
configuration (but could be).
|
configuration (but could be).
|
||||||
b. The network initialization thread was enabed in the netnsh
|
b. The network initialization thread was enabled in the netnsh
|
||||||
configuration on 2015-09-28, but not in the ipv6 configuration.
|
configuration on 2015-09-28, but not in the ipv6 configuration.
|
||||||
|
|
||||||
2. This configuration can be modified to that both IPv4 and IPv6
|
2. This configuration can be modified to that both IPv4 and IPv6
|
||||||
|
|||||||
@@ -279,7 +279,7 @@ SPI
|
|||||||
---
|
---
|
||||||
Since this board is so generic, having a quick way to vet the SPI
|
Since this board is so generic, having a quick way to vet the SPI
|
||||||
configuration seams in order. So the board provides a quick test
|
configuration seams in order. So the board provides a quick test
|
||||||
that can be selected vi CONFIG_NUCLEO_SPI_TEST that will initalise
|
that can be selected vi CONFIG_NUCLEO_SPI_TEST that will initialize
|
||||||
the selected buses (SPI1-SPI3) and send some text on the bus at
|
the selected buses (SPI1-SPI3) and send some text on the bus at
|
||||||
application initialization time board_app_initialize.
|
application initialization time board_app_initialize.
|
||||||
|
|
||||||
|
|||||||
@@ -320,7 +320,7 @@ void nxmq_free_msgq(FAR struct mqueue_inode_s *msgq);
|
|||||||
*
|
*
|
||||||
* Description:
|
* Description:
|
||||||
* This function implements a part of the POSIX message queue open logic.
|
* This function implements a part of the POSIX message queue open logic.
|
||||||
* It allocates and initializes a structu mqueue_inode_s structure.
|
* It allocates and initializes a struct mqueue_inode_s structure.
|
||||||
*
|
*
|
||||||
* Input Parameters:
|
* Input Parameters:
|
||||||
* mode - mode_t value is ignored
|
* mode - mode_t value is ignored
|
||||||
@@ -329,7 +329,7 @@ void nxmq_free_msgq(FAR struct mqueue_inode_s *msgq);
|
|||||||
* messages that may be placed in the message queue.
|
* messages that may be placed in the message queue.
|
||||||
*
|
*
|
||||||
* Returned Value:
|
* Returned Value:
|
||||||
* The allocated and initalized message queue structure or NULL in the
|
* The allocated and initialized message queue structure or NULL in the
|
||||||
* event of a failure.
|
* event of a failure.
|
||||||
*
|
*
|
||||||
****************************************************************************/
|
****************************************************************************/
|
||||||
|
|||||||
@@ -40,7 +40,7 @@
|
|||||||
#include <signal.h>
|
#include <signal.h>
|
||||||
|
|
||||||
/****************************************************************************
|
/****************************************************************************
|
||||||
* Publics Functions
|
* Public Functions
|
||||||
****************************************************************************/
|
****************************************************************************/
|
||||||
|
|
||||||
/****************************************************************************
|
/****************************************************************************
|
||||||
@@ -51,13 +51,11 @@
|
|||||||
* signals are included.
|
* signals are included.
|
||||||
*
|
*
|
||||||
* Input Parameters:
|
* Input Parameters:
|
||||||
* set - Signal set to initalize
|
* set - Signal set to initialize
|
||||||
*
|
*
|
||||||
* Returned Value:
|
* Returned Value:
|
||||||
* 0 (OK), or -1 (ERROR) if the signal set cannot be initialized.
|
* 0 (OK), or -1 (ERROR) if the signal set cannot be initialized.
|
||||||
*
|
*
|
||||||
* Assumptions:
|
|
||||||
*
|
|
||||||
****************************************************************************/
|
****************************************************************************/
|
||||||
|
|
||||||
int sigfillset(FAR sigset_t *set)
|
int sigfillset(FAR sigset_t *set)
|
||||||
|
|||||||
@@ -138,7 +138,7 @@ int getopt(int argc, FAR char *const argv[], FAR const char *optstring)
|
|||||||
FAR char *optchar;
|
FAR char *optchar;
|
||||||
int noarg_ret = '?';
|
int noarg_ret = '?';
|
||||||
|
|
||||||
/* The inital value of optind is 1. If getopt() is called again in the
|
/* The initial value of optind is 1. If getopt() is called again in the
|
||||||
* program, optind must be reset to some value <= 1.
|
* program, optind must be reset to some value <= 1.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user