style: fix checkpatch issues after debug.h move

Fixed copespell errors, for CI sucess!

Signed-off-by: Piyush Patle <piyushpatle228@gmail.com>
This commit is contained in:
Piyush Patle 2026-04-02 21:46:00 +05:30 committed by Alan C. Assis
parent 0dccc8ba21
commit 13d0e64ee6
123 changed files with 223 additions and 87 deletions

View file

@ -45,8 +45,8 @@
#include <string.h>
#include <assert.h>
#include <errno.h>
#include <nuttx/debug.h>
#include <nuttx/debug.h>
#include <nuttx/video/edid.h>
#include "am335x_lcdc.h"

View file

@ -30,6 +30,7 @@
#include <stdint.h>
#include <stdbool.h>
#include <errno.h>
#include <nuttx/debug.h>
#include <nuttx/irq.h>
#include <nuttx/spinlock.h>

View file

@ -67,7 +67,7 @@
#define TIMTYPE_GENERAL16 1 /* General 16-bit timers (up, down, up/down)*/
#define TIMTYPE_COUNTUP16 2 /* General 16-bit count-up timers */
#define TIMTYPE_COUNTUP16_N 3 /* General 16-bit count-up timers with
* complementary outptus
* complementary outputs
*/
#define TIMTYPE_GENERAL32 4 /* General 32-bit timers (up, down, up/down)*/
#define TIMTYPE_ADVANCED 5 /* Advanced timers */

View file

@ -32,6 +32,7 @@
#include <string.h>
#include <assert.h>
#include <errno.h>
#include <nuttx/debug.h>
#include <nuttx/irq.h>
#include <nuttx/arch.h>

View file

@ -27,6 +27,7 @@
#include <nuttx/config.h>
#include <stdint.h>
#include <assert.h>
#include <nuttx/debug.h>
#include <nuttx/init.h>
#include "arm_internal.h"

View file

@ -28,6 +28,7 @@
#include <stdint.h>
#include <time.h>
#include <nuttx/debug.h>
#include <nuttx/arch.h>
#include <nuttx/timers/arch_timer.h>

View file

@ -32,6 +32,7 @@
#include <time.h>
#include <assert.h>
#include <errno.h>
#include <nuttx/debug.h>
#include <nuttx/arch.h>
#include <nuttx/irq.h>

View file

@ -260,7 +260,7 @@
#define MD_PHY_LSB_REG 0x03
#define MD_PHY_CTRL_STAT_REG 0x17
/* Lucent LU3X31T-T64 transeiver ID */
/* Lucent LU3X31T-T64 transceiver ID */
#define LU3X31_T64_PHYID 0x00437421
@ -446,8 +446,8 @@ static inline void c5471_dumpbuffer(const char *msg, const uint8_t *buffer,
*
* Description:
* A helper routine used when serially communicating with the c547X's
* external ethernet transeiver device. GPIO pins are connected to the
* transeiver's MDCLK and MDIO pins and are used to accomplish the serial
* external ethernet transceiver device. GPIO pins are connected to the
* transceiver's MDCLK and MDIO pins and are used to accomplish the serial
* comm.
*
* protocol:
@ -513,8 +513,8 @@ static void c5471_mdtxbit (int bit_state)
*
* Description:
* A helper routine used when serially communicating with the c547X's
* external ethernet transeiver device. GPIO pins are connected to the
* transeiver's MDCLK and MDIO pins and are used to accomplish the serial
* external ethernet transceiver device. GPIO pins are connected to the
* transceiver's MDCLK and MDIO pins and are used to accomplish the serial
* comm.
*
* protocol:
@ -574,8 +574,8 @@ static int c5471_mdrxbit (void)
*
* Description:
* A helper routine used when serially communicating with the c547X's
* external ethernet transeiver device. GPIO pins are connected to the
* transeiver's MDCLK and MDIO pins and are used to accomplish the serial
* external ethernet transceiver device. GPIO pins are connected to the
* transceiver's MDCLK and MDIO pins and are used to accomplish the serial
* comm.
*
****************************************************************************/
@ -636,8 +636,8 @@ static void c5471_mdwrite (int adr, int reg, int data)
*
* Description:
* A helper routine used when serially communicating with the c547X's
* external ethernet transeiver device. GPIO pins are connected to the
* transeiver's MDCLK and MDIO pins and are used to accomplish the serial
* external ethernet transceiver device. GPIO pins are connected to the
* transceiver's MDCLK and MDIO pins and are used to accomplish the serial
* comm.
*
****************************************************************************/
@ -700,21 +700,21 @@ static int c5471_mdread (int adr, int reg)
* Name: c5471_phyinit
*
* Description:
* The c547X EVM board uses a Lucent LU3X31T-T64 transeiver device to
* The c547X EVM board uses a Lucent LU3X31T-T64 transceiver device to
* handle the physical layer (PHY). It's a h/w block that on the one end
* offers a Media Independent Interface (MII) which is connected to the
* Ethernet Interface Module (EIM) internal to the C547x and on the other
* end offers either the 10baseT or 100baseT electrical interface
* connecting to an RJ45 onboard network connector. The PHY transeiver has
* connecting to an RJ45 onboard network connector. The PHY transceiver has
* several internal registers allowing host configuration and status
* access. These internal registers are accessible by clocking serial data
* in/out of the MDIO pin of the LU3X31T-T64 chip. For c547X, the MDC and
* the MDIO pins are connected to the C547x GPIO15 and GPIO14 pins
* respectively. Host software twiddles the GPIO pins appropriately to get
* data serially into and out of the chip. This is typically a one time
* operation at boot and normal operation of the transeiver involves
* EIM/Transeiver interaction at the other pins of the transeiver chip and
* doesn't require host intervention at the MDC and MDIO pins.
* operation at boot and normal operation of the transceiver involves
* EIM/Transceiver interaction at the other pins of the transceiver chip
* and doesn't require host intervention at the MDC and MDIO pins.
*
****************************************************************************/
@ -724,7 +724,7 @@ static int c5471_phyinit (void)
int phyid;
int status;
/* Next, Setup GPIO pins to talk serially to the Lucent transeiver chip */
/* Next, Setup GPIO pins to talk serially to the Lucent transceiver chip */
/* enable gpio bits 15,14 */
@ -786,7 +786,7 @@ static int c5471_phyinit (void)
int phyid;
int status;
/* Next, Setup GPIO pins to talk serially to the Lucent transeiver chip */
/* Next, Setup GPIO pins to talk serially to the Lucent transceiver chip */
putreg32((getreg32(GPIO_EN) | 0x0000c000), GPIO_EN); /* enable gpio bits 15,14 */
putreg32((getreg32(GPIO_CIO) & ~0x00008000), GPIO_CIO); /* config gpio(15); out -> MDCLK */

View file

@ -27,6 +27,7 @@
#include <nuttx/config.h>
#include <stdint.h>
#include <nuttx/debug.h>
#include <nuttx/arch.h>

View file

@ -27,6 +27,7 @@
#include <nuttx/config.h>
#include <stdint.h>
#include <nuttx/debug.h>
#include <nuttx/arch.h>

View file

@ -28,6 +28,7 @@
#include <stdint.h>
#include <time.h>
#include <nuttx/debug.h>
#include <nuttx/arch.h>
#include <arch/board/board.h>

View file

@ -28,6 +28,7 @@
#include <stdint.h>
#include <time.h>
#include <nuttx/debug.h>
#include <nuttx/arch.h>
#include <nuttx/timers/arch_timer.h>

View file

@ -144,25 +144,25 @@ static void up_pm_notify(struct pm_callback_s *cb, int domain,
{
switch (pmstate)
{
case(PM_NORMAL):
case (PM_NORMAL):
{
/* Logic for PM_NORMAL goes here */
}
break;
case(PM_IDLE):
case (PM_IDLE):
{
/* Logic for PM_IDLE goes here */
}
break;
case(PM_STANDBY):
case (PM_STANDBY):
{
/* Logic for PM_STANDBY goes here */
}
break;
case(PM_SLEEP):
case (PM_SLEEP):
{
/* Logic for PM_SLEEP goes here */
}

View file

@ -145,25 +145,25 @@ static void up_pm_notify(struct pm_callback_s *cb, int domain,
{
switch (pmstate)
{
case(PM_NORMAL):
case (PM_NORMAL):
{
/* Logic for PM_NORMAL goes here */
}
break;
case(PM_IDLE):
case (PM_IDLE):
{
/* Logic for PM_IDLE goes here */
}
break;
case(PM_STANDBY):
case (PM_STANDBY):
{
/* Logic for PM_STANDBY goes here */
}
break;
case(PM_SLEEP):
case (PM_SLEEP):
{
/* Logic for PM_SLEEP goes here */
}

View file

@ -28,6 +28,7 @@
#include <stdint.h>
#include <time.h>
#include <nuttx/debug.h>
#include <nuttx/arch.h>
#include <arch/board/board.h>

View file

@ -2,7 +2,8 @@
* arch/arm/src/lc823450/lc823450_sdc.c
*
* SPDX-License-Identifier: BSD-3-Clause
* SPDX-FileCopyrightText: 2014,2015,2016,2017 Sony Video & Sound Products Inc.
* SPDX-FileCopyrightText: 2014,2015,2016,2017 Sony Video & Sound
* Products Inc.
* SPDX-FileCopyrightText: 2014-2015 ON Semiconductor. All rights reserved.
* SPDX-FileContributor: Masayuki Ishikawa <Masayuki.Ishikawa@jp.sony.com>
* SPDX-FileContributor: Masatoshi Tateishi <Masatoshi.Tateishi@jp.sony.com>
@ -45,6 +46,7 @@
#include <sys/types.h>
#include <assert.h>
#include <errno.h>
#include <nuttx/debug.h>
#include <nuttx/clock.h>
#include <nuttx/arch.h>

View file

@ -30,6 +30,7 @@
#include <stddef.h>
#include <time.h>
#include <assert.h>
#include <nuttx/debug.h>
#include <nuttx/nuttx.h>
#include <nuttx/arch.h>

View file

@ -2,7 +2,7 @@
* arch/arm/src/lpc17xx_40xx/lpc17_40_dac.c
*
* SPDX-License-Identifier: BSD-3-Clause
* SPDX-FileCopyrightText: 2010, 2014, 2016 Gregory Nutt. All rights reserved.
* SPDX-FileCopyrightText: 2010,2014,2016 Gregory Nutt. All rights reserved.
* SPDX-FileCopyrightText: 2011 Li Zhuoyi. All rights reserved.
* SPDX-FileContributor: Li Zhuoyi <lzyy.cn@gmail.com>
*

View file

@ -34,6 +34,7 @@
#include <sys/types.h>
#include <stdint.h>
#include <stdbool.h>
#include <nuttx/debug.h>
#include <nuttx/irq.h>

View file

@ -27,6 +27,7 @@
#include <nuttx/config.h>
#include <stdint.h>
#include <nuttx/debug.h>
#include <nuttx/arch.h>

View file

@ -33,6 +33,7 @@
#include <string.h>
#include <assert.h>
#include <errno.h>
#include <nuttx/debug.h>
#include <nuttx/irq.h>
#include <nuttx/arch.h>

View file

@ -27,6 +27,7 @@
#include <nuttx/config.h>
#include <stdint.h>
#include <nuttx/debug.h>
#include <nuttx/arch.h>
#include <arch/board/board.h>

View file

@ -44,6 +44,7 @@
#include <stdint.h>
#include <errno.h>
#include <nuttx/debug.h>
#include <nuttx/arch.h>

View file

@ -50,6 +50,7 @@
#include <string.h>
#include <assert.h>
#include <errno.h>
#include <nuttx/debug.h>
#include <nuttx/irq.h>
#include <nuttx/arch.h>

View file

@ -42,6 +42,7 @@
#include <nuttx/config.h>
#include <sys/types.h>
#include <nuttx/debug.h>
#include <nuttx/arch.h>
#include <arch/board/board.h>

View file

@ -28,6 +28,7 @@
#include <stdint.h>
#include <time.h>
#include <nuttx/debug.h>
#include <nuttx/arch.h>
#include <arch/board/board.h>

View file

@ -27,6 +27,7 @@
#include <nuttx/config.h>
#include <stdbool.h>
#include <assert.h>
#include <nuttx/debug.h>
#include <nuttx/clock.h>
#include <nuttx/wdog.h>

View file

@ -48,6 +48,7 @@
#include <string.h>
#include <errno.h>
#include <assert.h>
#include <nuttx/debug.h>
#include <nuttx/spinlock.h>
#include <nuttx/timers/timer.h>

View file

@ -28,6 +28,7 @@
#include <stdint.h>
#include <time.h>
#include <nuttx/debug.h>
#include <nuttx/arch.h>
#include <arch/board/board.h>

View file

@ -26,6 +26,7 @@
#include <stdint.h>
#include <time.h>
#include <nuttx/debug.h>
#include <nuttx/arch.h>
#include <arch/board/board.h>

View file

@ -32,6 +32,7 @@
#include <semaphore.h>
#include <string.h>
#include <errno.h>
#include <nuttx/debug.h>
#include <nuttx/spinlock.h>
#include <nuttx/arch.h>

View file

@ -28,6 +28,7 @@
#include <stdint.h>
#include <time.h>
#include <nuttx/debug.h>
#include <nuttx/arch.h>
#include <arch/board/board.h>

View file

@ -28,6 +28,7 @@
#include <stdint.h>
#include <time.h>
#include <nuttx/debug.h>
#include <nuttx/arch.h>
#include <arch/board/board.h>

View file

@ -28,6 +28,7 @@
#include <stdint.h>
#include <time.h>
#include <nuttx/debug.h>
#include <nuttx/arch.h>
#include <arch/board/board.h>

View file

@ -68,7 +68,7 @@
#define TIMTYPE_GENERAL16 1 /* General 16-bit timers (up, down, up/down)*/
#define TIMTYPE_COUNTUP16 2 /* General 16-bit count-up timers */
#define TIMTYPE_COUNTUP16_N 3 /* General 16-bit count-up timers with
* complementary outptus
* complementary outputs
*/
#define TIMTYPE_GENERAL32 4 /* General 32-bit timers (up, down, up/down)*/
#define TIMTYPE_ADVANCED 5 /* Advanced timers */

View file

@ -28,6 +28,7 @@
#include <stdint.h>
#include <time.h>
#include <nuttx/debug.h>
#include <nuttx/arch.h>
#include <nuttx/timers/arch_timer.h>

View file

@ -28,6 +28,7 @@
#include <stdint.h>
#include <time.h>
#include <nuttx/debug.h>
#include <nuttx/arch.h>
#include <arch/board/board.h>

View file

@ -56,7 +56,7 @@
#define TIMTYPE_GENERAL16 1 /* General 16-bit timers (up, down, up/down)*/
#define TIMTYPE_COUNTUP16 2 /* General 16-bit count-up timers */
#define TIMTYPE_COUNTUP16_N 3 /* General 16-bit count-up timers with
* complementary outptus
* complementary outputs
*/
#define TIMTYPE_GENERAL32 4 /* General 32-bit timers (up, down, up/down)*/
#define TIMTYPE_ADVANCED 5 /* Advanced timers */

View file

@ -28,6 +28,7 @@
#include <stdint.h>
#include <time.h>
#include <nuttx/debug.h>
#include <nuttx/arch.h>
#include <arch/board/board.h>

View file

@ -61,7 +61,7 @@
#define TIMTYPE_GENERAL16 1 /* General 16-bit timers (up, down, up/down)*/
#define TIMTYPE_COUNTUP16 2 /* General 16-bit count-up timers */
#define TIMTYPE_COUNTUP16_N 3 /* General 16-bit count-up timers with
* complementary outptus
* complementary outputs
*/
#define TIMTYPE_GENERAL32 4 /* General 32-bit timers (up, down, up/down)*/
#define TIMTYPE_ADVANCED 5 /* Advanced timers */

View file

@ -28,6 +28,7 @@
#include <stdint.h>
#include <time.h>
#include <nuttx/debug.h>
#include <nuttx/arch.h>
#include <arch/board/board.h>

View file

@ -63,7 +63,7 @@
#define TIMTYPE_GENERAL16 1 /* General 16-bit timers (up, down, up/down)*/
#define TIMTYPE_COUNTUP16 2 /* General 16-bit count-up timers */
#define TIMTYPE_COUNTUP16_N 3 /* General 16-bit count-up timers with
* complementary outptus
* complementary outputs
*/
#define TIMTYPE_GENERAL32 4 /* General 32-bit timers (up, down, up/down)*/
#define TIMTYPE_ADVANCED 5 /* Advanced timers */

View file

@ -28,6 +28,7 @@
#include <stdint.h>
#include <time.h>
#include <nuttx/debug.h>
#include <nuttx/arch.h>
#include <arch/board/board.h>

View file

@ -65,7 +65,7 @@
#define TIMTYPE_GENERAL16 1 /* General 16-bit timers: TIM3,4 */
#define TIMTYPE_COUNTUP16 2 /* General 16-bit count-up timers: TIM15-17 */
#define TIMTYPE_COUNTUP16_N 3 /* General 16-bit count-up timers with
* complementary outptus
* complementary outputs
*/
#define TIMTYPE_GENERAL32 4 /* General 32-bit timers: TIM2,5 */
#define TIMTYPE_ADVANCED 5 /* Advanced timers: TIM1,8 */

View file

@ -28,6 +28,7 @@
#include <stdint.h>
#include <time.h>
#include <nuttx/debug.h>
#include <nuttx/arch.h>
#include <arch/board/board.h>

View file

@ -28,6 +28,7 @@
#include <stdint.h>
#include <time.h>
#include <nuttx/debug.h>
#include <nuttx/arch.h>
#include <arch/board/board.h>

View file

@ -28,6 +28,7 @@
#include <stdint.h>
#include <time.h>
#include <nuttx/debug.h>
#include <nuttx/arch.h>
#include <arch/board/board.h>

View file

@ -28,6 +28,7 @@
#include <stdint.h>
#include <time.h>
#include <nuttx/debug.h>
#include <nuttx/arch.h>
#include <arch/board/board.h>

View file

@ -33,6 +33,7 @@
#include <string.h>
#include <assert.h>
#include <errno.h>
#include <nuttx/debug.h>
#include <nuttx/irq.h>
#include <nuttx/arch.h>

View file

@ -316,7 +316,7 @@ void tiva_adc_step_cfg(struct tiva_adc_step_cfg_s *stepcfg)
uint8_t sse = stepcfg->sse;
uint8_t step = stepcfg->step;
#ifdef CONFIG_EXPERIMENTAL
uint8_t shold = stepcfg->shold;
uint8_t hold = stepcfg->hold;
#endif
uint8_t flags = stepcfg->flags;
uint8_t ain = stepcfg->ain;
@ -324,8 +324,8 @@ void tiva_adc_step_cfg(struct tiva_adc_step_cfg_s *stepcfg)
ainfo("configure ADC%d SSE%d STEP%d...\n", adc, sse, step);
#ifdef CONFIG_DEBUG_ANALOG
ainfo(" shold=0x%02x flags=0x%02x ain=%d...\n",
stepcfg->shold, stepcfg->flags, stepcfg->ain);
ainfo(" hold=0x%02x flags=0x%02x ain=%d...\n",
stepcfg->hold, stepcfg->flags, stepcfg->ain);
#endif
/* Configure the AIN GPIO for analog input if not flagged to be mux'ed to
@ -343,7 +343,7 @@ void tiva_adc_step_cfg(struct tiva_adc_step_cfg_s *stepcfg)
tiva_adc_sse_differential(adc, sse, step, 0); /* TODO: update when differential
* support is added. */
#ifdef CONFIG_EXPERIMENTAL
tiva_adc_sse_sample_hold_time(adc, sse, step, shold);
tiva_adc_sse_sample_hold_time(adc, sse, step, hold);
#endif
tiva_adc_sse_step_cfg(adc, sse, step, flags);
}
@ -959,17 +959,17 @@ void tiva_adc_sse_differential(uint8_t adc, uint8_t sse, uint8_t chn,
* adc - peripheral state
* sse - sample sequencer
* chn - sample sequencer channel
* shold - sample and hold time
* hold - sample and hold time
*
****************************************************************************/
#ifdef CONFIG_EXPERIMENTAL
void tiva_adc_sse_sample_hold_time(uint8_t adc, uint8_t sse,
uint8_t chn, uint32_t shold)
uint8_t chn, uint32_t hold)
{
uintptr_t sstshreg = (TIVA_ADC_BASE(adc) + TIVA_ADC_SSTSH(sse));
modifyreg32(sstshreg, ADC_SSTSH_MASK(sse),
(shold << ADC_SSTSH_SHIFT(sse)));
(hold << ADC_SSTSH_SHIFT(sse)));
}
#endif

View file

@ -1721,25 +1721,25 @@ static void hciuart_pm_notify(struct pm_callback_s *cb, int domain,
{
switch (pmstate)
{
case(PM_NORMAL):
case (PM_NORMAL):
{
/* Logic for PM_NORMAL goes here */
}
break;
case(PM_IDLE):
case (PM_IDLE):
{
/* Logic for PM_IDLE goes here */
}
break;
case(PM_STANDBY):
case (PM_STANDBY):
{
/* Logic for PM_STANDBY goes here */
}
break;
case(PM_SLEEP):
case (PM_SLEEP):
{
/* Logic for PM_SLEEP goes here */
}

View file

@ -28,6 +28,7 @@
#include <stdint.h>
#include <time.h>
#include <nuttx/debug.h>
#include <nuttx/arch.h>
#include <arch/board/board.h>

View file

@ -129,7 +129,7 @@ struct tiva_adc_step_cfg_s
uint8_t adc; /* Parent peripheral */
uint8_t sse; /* Parent sample sequencer (SSE) */
uint8_t step; /* Which step in the sequencer */
uint8_t shold; /* Sample and hold time */
uint8_t hold; /* Sample and hold time */
uint8_t flags; /* Last step? Interrupt enabled?
* Internal temperature sensor? */
uint8_t ain; /* Which analog input */
@ -629,13 +629,13 @@ void tiva_adc_sse_differential(uint8_t adc, uint8_t sse, uint8_t chn,
* adc - peripheral state
* sse - sample sequencer
* chn - sample sequencer channel
* shold - sample and hold time
* hold - sample and hold time
*
****************************************************************************/
#ifdef CONFIG_EXPERIMENTAL
void tiva_adc_sse_sample_hold_time(uint8_t adc, uint8_t sse, uint8_t chn,
uint32_t shold);
uint32_t hold);
#endif
/****************************************************************************

View file

@ -29,6 +29,7 @@
#include <stdint.h>
#include <assert.h>
#include <nuttx/debug.h>
#include <nuttx/irq.h>

View file

@ -30,6 +30,7 @@
#include <stdint.h>
#include <assert.h>
#include <nuttx/debug.h>
#include <nuttx/arch.h>
#include <nuttx/board.h>

View file

@ -28,6 +28,7 @@
#include <sys/types.h>
#include <stdint.h>
#include <sched.h>
#include <nuttx/debug.h>
#include <nuttx/arch.h>
#include <nuttx/kmalloc.h>

View file

@ -28,6 +28,7 @@
#include <sys/types.h>
#include <stdint.h>
#include <sched.h>
#include <nuttx/debug.h>
#include <nuttx/arch.h>
#include <nuttx/kmalloc.h>

View file

@ -29,6 +29,7 @@
#include <sys/types.h>
#include <stdint.h>
#include <sched.h>
#include <nuttx/debug.h>
#include <nuttx/arch.h>
#include <nuttx/kmalloc.h>

View file

@ -29,6 +29,7 @@
#include <sys/types.h>
#include <stdint.h>
#include <sched.h>
#include <nuttx/debug.h>
#include <nuttx/arch.h>
#include <nuttx/kmalloc.h>

View file

@ -27,6 +27,7 @@
#include <nuttx/config.h>
#include <stdint.h>
#include <nuttx/debug.h>
#include <nuttx/arch.h>
#include <arch/board/board.h>

View file

@ -28,6 +28,7 @@
#include <sched.h>
#include <assert.h>
#include <nuttx/debug.h>
#include <nuttx/arch.h>
#include <nuttx/sched.h>

View file

@ -30,6 +30,7 @@
#include <stdint.h>
#include <sched.h>
#include <assert.h>
#include <nuttx/debug.h>
#include <nuttx/kmalloc.h>
#include <nuttx/arch.h>

View file

@ -34,6 +34,7 @@
#define CONFIG_DEBUG_INFO 1
#include <stdint.h>
#include <nuttx/debug.h>
#include <nuttx/irq.h>

View file

@ -28,6 +28,7 @@
#include <stdint.h>
#include <time.h>
#include <nuttx/debug.h>
#include <nuttx/irq.h>
#include <nuttx/arch.h>

View file

@ -33,6 +33,7 @@
#include <string.h>
#include <stdlib.h>
#include <inttypes.h>
#include <nuttx/debug.h>
#include <nuttx/mutex.h>

View file

@ -31,6 +31,7 @@
#include <stdint.h>
#include <assert.h>
#include <nuttx/debug.h>
#include <nuttx/mutex.h>
#include <sys/types.h>

View file

@ -34,6 +34,7 @@
#include <assert.h>
#include <stdlib.h>
#include <sys/param.h>
#include <nuttx/debug.h>
#include <nuttx/mutex.h>

View file

@ -33,6 +33,7 @@
#include <string.h>
#include <stdlib.h>
#include <inttypes.h>
#include <nuttx/debug.h>
#include <nuttx/mutex.h>

View file

@ -30,6 +30,7 @@
#include <assert.h>
#include <errno.h>
#include <nuttx/debug.h>
#include <nuttx/crc64.h>
#include <arpa/inet.h>

View file

@ -28,6 +28,7 @@
#include <stdint.h>
#include <errno.h>
#include <nuttx/debug.h>
#include <nuttx/arch.h>

View file

@ -29,6 +29,7 @@
#include <stdint.h>
#include <stdio.h>
#include <assert.h>
#include <nuttx/debug.h>
#include <nuttx/spinlock.h>

View file

@ -28,6 +28,7 @@
#include <sched.h>
#include <assert.h>
#include <nuttx/debug.h>
#include <nuttx/arch.h>
#include <nuttx/sched.h>

View file

@ -28,6 +28,7 @@
#include <sched.h>
#include <assert.h>
#include <nuttx/debug.h>
#include <nuttx/addrenv.h>
#include <nuttx/arch.h>

View file

@ -27,6 +27,7 @@
#include <nuttx/config.h>
#include <inttypes.h>
#include <nuttx/debug.h>
#include <nuttx/irq.h>

View file

@ -33,6 +33,7 @@
#include <string.h>
#include <stdlib.h>
#include <inttypes.h>
#include <nuttx/debug.h>
#include <nuttx/mutex.h>

View file

@ -31,6 +31,7 @@
#include <stdint.h>
#include <assert.h>
#include <nuttx/debug.h>
#include <nuttx/mutex.h>
#include <sys/types.h>

View file

@ -24,6 +24,7 @@
#include <stdlib.h>
#include <assert.h>
#include <nuttx/debug.h>
#include <nuttx/kmalloc.h>
#include <nuttx/himem/himem.h>

View file

@ -27,6 +27,7 @@
#include <stdbool.h>
#include <strings.h>
#include <assert.h>
#include <nuttx/debug.h>
#include <nuttx/config.h>
#include <nuttx/signal.h>

View file

@ -33,6 +33,7 @@
#include <string.h>
#include <stdlib.h>
#include <inttypes.h>
#include <nuttx/debug.h>
#include <nuttx/mutex.h>

View file

@ -28,6 +28,7 @@
#include <nuttx/mm/mm.h>
#include <sys/types.h>
#include <nuttx/debug.h>
#include <nuttx/kmalloc.h>

View file

@ -24,6 +24,7 @@
#include <stdlib.h>
#include <assert.h>
#include <nuttx/debug.h>
#include <nuttx/kmalloc.h>
#include <nuttx/himem/himem.h>

View file

@ -28,6 +28,7 @@
#include <nuttx/mm/mm.h>
#include <sys/types.h>
#include <nuttx/debug.h>
#include <nuttx/kmalloc.h>

View file

@ -30,6 +30,7 @@
#include <stdint.h>
#include <sched.h>
#include <assert.h>
#include <nuttx/debug.h>
#include <nuttx/kmalloc.h>
#include <nuttx/arch.h>

View file

@ -30,6 +30,7 @@
#include <stdio.h>
#include <errno.h>
#include <nuttx/debug.h>
#include <nuttx/board.h>
#include <nuttx/signal.h>

View file

@ -28,6 +28,7 @@
#include <stdio.h>
#include <errno.h>
#include <nuttx/debug.h>
#include <nuttx/board.h>
#include <nuttx/fs/fs.h>

View file

@ -29,6 +29,7 @@
#include <stdio.h>
#include <stdint.h>
#include <errno.h>
#include <nuttx/debug.h>
#include <nuttx/sensors/cxd5610_gnss.h>
#include <nuttx/i2c/i2c_master.h>

View file

@ -28,6 +28,7 @@
#include <syslog.h>
#include <errno.h>
#include <nuttx/debug.h>
#include <nuttx/timers/rtc.h>

View file

@ -28,6 +28,7 @@
#include <arch/board/board.h>
#include <assert.h>
#include <nuttx/debug.h>
#include <nuttx/clock.h>
#include <nuttx/config.h>

View file

@ -31,6 +31,7 @@
#include <stdbool.h>
#include <syslog.h>
#include <nuttx/debug.h>
#include <nuttx/signal.h>

View file

@ -33,6 +33,7 @@
#include <stdio.h>
#include <syslog.h>
#include <errno.h>
#include <nuttx/debug.h>
#include <nuttx/signal.h>

View file

@ -31,6 +31,7 @@
#include <stdbool.h>
#include <sched.h>
#include <errno.h>
#include <nuttx/debug.h>
#include <nuttx/usb/usbdev.h>
#include <nuttx/usb/usbdev_trace.h>

View file

@ -25,6 +25,7 @@
****************************************************************************/
#include <inttypes.h>
#include <nuttx/debug.h>
#include <nuttx/spi/spi.h>

View file

@ -27,6 +27,7 @@
#include <nuttx/config.h>
#include <errno.h>
#include <nuttx/debug.h>
#include <nuttx/timers/capture.h>
#include <arch/board/board.h>

View file

@ -26,6 +26,7 @@
#include <nuttx/config.h>
#include <syslog.h>
#include <nuttx/debug.h>
#include <nuttx/i2c/i2c_master.h>
#include <nuttx/leds/userled.h>

View file

@ -31,6 +31,7 @@
#include <stdbool.h>
#include <sched.h>
#include <errno.h>
#include <nuttx/debug.h>
#include <nuttx/usb/usbdev.h>
#include <nuttx/usb/usbdev_trace.h>

View file

@ -28,6 +28,7 @@
#include <arch/irq.h>
#include <assert.h>
#include <nuttx/debug.h>
#include <nuttx/irq.h>
#include <sys/types.h>

View file

@ -29,6 +29,7 @@
#include <stdio.h>
#include <stdbool.h>
#include <assert.h>
#include <nuttx/debug.h>
#include <nuttx/arch.h>
#include <nuttx/ioexpander/gpio.h>

View file

@ -5,52 +5,71 @@
# You can then do "make savedefconfig" to generate a new defconfig file that includes your
# modifications.
#
# CONFIG_EXAMPLES_NXHELLO_DEFAULT_FONT is not set
# CONFIG_NX_DISABLE_32BPP is not set
# CONFIG_NX_PACKEDMSFIRST is not set
# CONFIG_NSH_CMDOPT_HEXDUMP is not set
CONFIG_ARCH="sim"
CONFIG_ARCH_BOARD="sim"
CONFIG_ARCH_BOARD_SIM=y
CONFIG_ARCH_CHIP="sim"
CONFIG_ARCH_SIM=y
CONFIG_BOARDCTL_APP_SYMTAB=y
CONFIG_BOARDCTL_POWEROFF=y
CONFIG_BOARD_LOOPSPERMSEC=0
CONFIG_BOOT_RUNFROMEXTSRAM=y
CONFIG_BUILTIN=y
CONFIG_COVERAGE_ALL=y
CONFIG_COVERAGE_TOOLCHAIN=y
CONFIG_DEBUG_ASSERTIONS=y
CONFIG_DEBUG_ASSERTIONS_EXPRESSION=y
CONFIG_DEBUG_FEATURES=y
CONFIG_DEBUG_SYMBOLS=y
CONFIG_DISABLE_POSIX_TIMERS=y
CONFIG_DRIVERS_VIDEO=y
CONFIG_DEV_GPIO=y
CONFIG_DEV_LOOP=y
CONFIG_ETC_FATDEVNO=2
CONFIG_ETC_ROMFS=y
CONFIG_ETC_ROMFSDEVNO=1
CONFIG_EXAMPLES_NX=y
CONFIG_EXAMPLES_NXHELLO=y
CONFIG_EXAMPLES_NXHELLO_FONTID=6
CONFIG_EXAMPLES_NXLINES=y
CONFIG_EXAMPLES_NXLINES_BORDERWIDTH=4
CONFIG_EXAMPLES_NXLINES_BPP=32
CONFIG_EXAMPLES_TOUCHSCREEN=y
CONFIG_EXAMPLES_GPIO=y
CONFIG_EXAMPLES_HELLO=y
CONFIG_FAT_LCNAMES=y
CONFIG_FAT_LFN=y
CONFIG_FS_BINFS=y
CONFIG_FS_FAT=y
CONFIG_FS_HOSTFS=y
CONFIG_FS_PROCFS=y
CONFIG_FS_RAMMAP=y
CONFIG_FS_ROMFS=y
CONFIG_HAVE_CXX=y
CONFIG_GPIO_LOWER_HALF=y
CONFIG_HAVE_CXXINITIALIZE=y
CONFIG_IDLETHREAD_STACKSIZE=4096
CONFIG_INIT_ENTRYPOINT="nsh_main"
CONFIG_INPUT=y
CONFIG_MQ_MAXMSGSIZE=64
CONFIG_IOEXPANDER=y
CONFIG_IOEXPANDER_DUMMY=y
CONFIG_LIBC_ENVPATH=y
CONFIG_LIBC_EXECFUNCS=y
CONFIG_LIBC_LOCALE=y
CONFIG_LIBC_LOCALE_CATALOG=y
CONFIG_LIBC_LOCALE_GETTEXT=y
CONFIG_LIBC_MAX_EXITFUNS=1
CONFIG_LIBC_NUMBERED_ARGS=y
CONFIG_NDEBUG=y
CONFIG_NSH_ARCHINIT=y
CONFIG_NSH_BUILTIN_APPS=y
CONFIG_NSH_FILE_APPS=y
CONFIG_NSH_READLINE=y
CONFIG_NX=y
CONFIG_NXFONT_SANS23X27=y
CONFIG_NXFONT_SANS28X37B=y
CONFIG_NX_BLOCKING=y
CONFIG_NX_KBD=y
CONFIG_NX_XYINPUT_MOUSE=y
CONFIG_PATH_INITIAL="/bin"
CONFIG_PIPES=y
CONFIG_PSEUDOFS_ATTRIBUTES=y
CONFIG_PSEUDOFS_FILE=y
CONFIG_PSEUDOFS_SOFTLINKS=y
CONFIG_READLINE_TABCOMPLETION=y
CONFIG_SCHED_BACKTRACE=y
CONFIG_SCHED_EVENTS=y
CONFIG_SCHED_HAVE_PARENT=y
CONFIG_SCHED_WAITPID=y
CONFIG_SIM_TOUCHSCREEN=y
CONFIG_SIM_X11FB=y
CONFIG_START_DAY=6
CONFIG_START_MONTH=10
CONFIG_START_YEAR=2011
CONFIG_SIM_HOSTFS=y
CONFIG_SIM_WALLTIME_SIGNAL=y
CONFIG_START_MONTH=6
CONFIG_START_YEAR=2008
CONFIG_SYSTEM_DUMPSTACK=y
CONFIG_SYSTEM_GCOV=y
CONFIG_SYSTEM_NSH=y
CONFIG_VIDEO_FB=y
CONFIG_TESTING_OSTEST=y

View file

@ -32,6 +32,7 @@
#include <stdlib.h>
#include <stdio.h>
#include <errno.h>
#include <nuttx/debug.h>
#include <nuttx/fs/fs.h>
#ifdef CONFIG_MTD_AM29LV

View file

@ -40,6 +40,7 @@
#include <stdlib.h>
#include <sys/types.h>
#include <inttypes.h>
#include <nuttx/debug.h>
#include <nuttx/fs/fs.h>

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