include/debug.h: Use <nuttx/debug.h> in apps

Replace app-side includes of <debug.h> with <nuttx/debug.h> to use the
header from the NuttX tree explicitly after the header move.

Signed-off-by: Piyush Patle <piyushpatle228@gmail.com>
This commit is contained in:
Piyush Patle 2026-04-01 16:29:59 +05:30 committed by Alan C. Assis
parent 3591378113
commit 9d849adfab
352 changed files with 403 additions and 404 deletions

View file

@ -29,7 +29,7 @@
#include <spawn.h> #include <spawn.h>
#include <fcntl.h> #include <fcntl.h>
#include <errno.h> #include <errno.h>
#include <debug.h> #include <nuttx/debug.h>
#include "builtin/builtin.h" #include "builtin/builtin.h"

View file

@ -25,7 +25,7 @@
****************************************************************************/ ****************************************************************************/
#include <sys/ioctl.h> #include <sys/ioctl.h>
#include <debug.h> #include <nuttx/debug.h>
#include <errno.h> #include <errno.h>
#include <nuttx/can/can.h> #include <nuttx/can/can.h>

View file

@ -25,7 +25,7 @@
****************************************************************************/ ****************************************************************************/
#include <sys/ioctl.h> #include <sys/ioctl.h>
#include <debug.h> #include <nuttx/debug.h>
#include <errno.h> #include <errno.h>
#include <nuttx/can/can.h> #include <nuttx/can/can.h>

View file

@ -25,7 +25,7 @@
****************************************************************************/ ****************************************************************************/
#include <sys/ioctl.h> #include <sys/ioctl.h>
#include <debug.h> #include <nuttx/debug.h>
#include <errno.h> #include <errno.h>
#include <nuttx/can/can.h> #include <nuttx/can/can.h>

View file

@ -25,7 +25,7 @@
****************************************************************************/ ****************************************************************************/
#include <sys/ioctl.h> #include <sys/ioctl.h>
#include <debug.h> #include <nuttx/debug.h>
#include <errno.h> #include <errno.h>
#include <nuttx/can/can.h> #include <nuttx/can/can.h>

View file

@ -25,7 +25,7 @@
****************************************************************************/ ****************************************************************************/
#include <sys/ioctl.h> #include <sys/ioctl.h>
#include <debug.h> #include <nuttx/debug.h>
#include <errno.h> #include <errno.h>
#include <nuttx/can/can.h> #include <nuttx/can/can.h>

View file

@ -25,7 +25,7 @@
****************************************************************************/ ****************************************************************************/
#include <sys/ioctl.h> #include <sys/ioctl.h>
#include <debug.h> #include <nuttx/debug.h>
#include <errno.h> #include <errno.h>
#include <nuttx/can/can.h> #include <nuttx/can/can.h>

View file

@ -35,7 +35,7 @@
#include <string.h> #include <string.h>
#include <fcntl.h> #include <fcntl.h>
#include <errno.h> #include <errno.h>
#include <debug.h> #include <nuttx/debug.h>
#include <nuttx/analog/adc.h> #include <nuttx/analog/adc.h>
#include <nuttx/analog/ioctl.h> #include <nuttx/analog/ioctl.h>
@ -95,7 +95,7 @@ static void adc_help(FAR struct adc_state_s *adc)
printf("Usage: adc [OPTIONS]\n"); printf("Usage: adc [OPTIONS]\n");
printf("\nArguments are \"sticky\". " printf("\nArguments are \"sticky\". "
"For example, once the ADC device is\n"); "For example, once the ADC device is\n");
printf("specified, that device will be re-used until it is changed.\n"); printf("specified, that device will be reused until it is changed.\n");
printf("\n\"sticky\" OPTIONS include:\n"); printf("\n\"sticky\" OPTIONS include:\n");
printf(" [-p devpath] selects the ADC device. " printf(" [-p devpath] selects the ADC device. "
"Default: %s Current: %s\n", "Default: %s Current: %s\n",

View file

@ -33,7 +33,7 @@
#include <fcntl.h> #include <fcntl.h>
#include <errno.h> #include <errno.h>
#include <fixedmath.h> #include <fixedmath.h>
#include <debug.h> #include <nuttx/debug.h>
#include <unistd.h> #include <unistd.h>
#include <nuttx/input/ajoystick.h> #include <nuttx/input/ajoystick.h>

View file

@ -31,7 +31,7 @@
#include <stdlib.h> #include <stdlib.h>
#include <fcntl.h> #include <fcntl.h>
#include <errno.h> #include <errno.h>
#include <debug.h> #include <nuttx/debug.h>
#include <nuttx/power/battery_ioctl.h> #include <nuttx/power/battery_ioctl.h>
#include <nuttx/power/battery_charger.h> #include <nuttx/power/battery_charger.h>
@ -117,7 +117,7 @@ void health_report(int health)
case BATTERY_HEALTH_GOOD: case BATTERY_HEALTH_GOOD:
{ {
printf("Battery is in good condiction!\n"); printf("Battery is in good condition!\n");
} }
break; break;

View file

@ -29,7 +29,7 @@
#include <stdlib.h> #include <stdlib.h>
#include <sched.h> #include <sched.h>
#include <errno.h> #include <errno.h>
#include <debug.h> #include <nuttx/debug.h>
#include <unistd.h> #include <unistd.h>
#include <net/if.h> #include <net/if.h>

View file

@ -32,7 +32,7 @@
#include <stdlib.h> #include <stdlib.h>
#include <semaphore.h> #include <semaphore.h>
#include <errno.h> #include <errno.h>
#include <debug.h> #include <nuttx/debug.h>
#include <sys/boardctl.h> #include <sys/boardctl.h>
#include <arch/board/board.h> #include <arch/board/board.h>

View file

@ -35,7 +35,7 @@
#include <string.h> #include <string.h>
#include <fcntl.h> #include <fcntl.h>
#include <errno.h> #include <errno.h>
#include <debug.h> #include <nuttx/debug.h>
#include <nuttx/can/can.h> #include <nuttx/can/can.h>

View file

@ -37,7 +37,7 @@
#include <limits.h> #include <limits.h>
#include <inttypes.h> #include <inttypes.h>
#include <errno.h> #include <errno.h>
#include <debug.h> #include <nuttx/debug.h>
#include <nuttx/timers/capture.h> #include <nuttx/timers/capture.h>

View file

@ -45,7 +45,7 @@
#include <sys/ioctl.h> #include <sys/ioctl.h>
#include <assert.h> #include <assert.h>
#include <debug.h> #include <nuttx/debug.h>
#include <errno.h> #include <errno.h>
#include <fcntl.h> #include <fcntl.h>
#include <poll.h> #include <poll.h>

View file

@ -35,7 +35,7 @@
#include <fcntl.h> #include <fcntl.h>
#include <string.h> #include <string.h>
#include <errno.h> #include <errno.h>
#include <debug.h> #include <nuttx/debug.h>
#include <nuttx/crc32.h> #include <nuttx/crc32.h>
#include <nuttx/mtd/mtd.h> #include <nuttx/mtd/mtd.h>
@ -450,7 +450,7 @@ static int configdata_verifyconfig(void)
{ {
g_nverified++; g_nverified++;
#if CONFIG_EXAMPLES_CONFIGDATA_VERBOSE != 0 #if CONFIG_EXAMPLES_CONFIGDATA_VERBOSE != 0
printf(" Verifed entry %04X, %d\n", printf(" Verified entry %04X, %d\n",
entry->id, entry->instance); entry->id, entry->instance);
#endif #endif
} }

View file

@ -35,7 +35,7 @@
#include <string.h> #include <string.h>
#include <fcntl.h> #include <fcntl.h>
#include <errno.h> #include <errno.h>
#include <debug.h> #include <nuttx/debug.h>
#include <math.h> #include <math.h>
#include <fixedmath.h> #include <fixedmath.h>

View file

@ -29,7 +29,7 @@
#include <string.h> #include <string.h>
#include <unistd.h> #include <unistd.h>
#include <time.h> #include <time.h>
#include <debug.h> #include <nuttx/debug.h>
#include <net/if.h> #include <net/if.h>
#include <netinet/in.h> #include <netinet/in.h>

View file

@ -32,7 +32,7 @@
#include <stdlib.h> #include <stdlib.h>
#include <fcntl.h> #include <fcntl.h>
#include <errno.h> #include <errno.h>
#include <debug.h> #include <nuttx/debug.h>
#include <unistd.h> #include <unistd.h>
#include <nuttx/input/djoystick.h> #include <nuttx/input/djoystick.h>

View file

@ -37,7 +37,7 @@
#include <unistd.h> #include <unistd.h>
#include <string.h> #include <string.h>
#include <pthread.h> #include <pthread.h>
#include <debug.h> #include <nuttx/debug.h>
#include <errno.h> #include <errno.h>
#include <nuttx/symtab.h> #include <nuttx/symtab.h>

View file

@ -27,7 +27,7 @@
#include <nuttx/config.h> #include <nuttx/config.h>
#include <cstdio> #include <cstdio>
#include <debug.h> #include <nuttx/debug.h>
#include <etl/vector.h> #include <etl/vector.h>
#include <etl/numeric.h> #include <etl/numeric.h>

View file

@ -42,7 +42,7 @@
#include <nuttx/video/fb.h> #include <nuttx/video/fb.h>
#include <ctype.h> #include <ctype.h>
#include <spawn.h> #include <spawn.h>
#include <debug.h> #include <nuttx/debug.h>
#include <poll.h> #include <poll.h>
#include <nuttx/ascii.h> #include <nuttx/ascii.h>
#include <nuttx/lib/builtin.h> #include <nuttx/lib/builtin.h>
@ -1913,7 +1913,7 @@ static void fbcon_write(FAR struct fbcon_state_s *st,
do do
{ {
/* Is the character part of a VT100 escape sequnce? */ /* Is the character part of a VT100 escape sequence? */
state = fbcon_vt100(st, ch); state = fbcon_vt100(st, ch);
switch (state) switch (state)
@ -2652,4 +2652,3 @@ errout:
fprintf(stderr, "FBCON exiting with error %d\n", exitcode); fprintf(stderr, "FBCON exiting with error %d\n", exitcode);
return exitcode; return exitcode;
} }

View file

@ -29,7 +29,7 @@
#ifdef EXAMPLES_FLOWC_HOST #ifdef EXAMPLES_FLOWC_HOST
#else #else
# include <debug.h> # include <nuttx/debug.h>
#endif #endif
/**************************************************************************** /****************************************************************************

View file

@ -31,7 +31,7 @@
#include <nuttx/compiler.h> #include <nuttx/compiler.h>
#include <stdio.h> #include <stdio.h>
#include <debug.h> #include <nuttx/debug.h>
#ifdef CONFIG_EXAMPLES_FT80X #ifdef CONFIG_EXAMPLES_FT80X

View file

@ -33,7 +33,7 @@
#include <unistd.h> #include <unistd.h>
#include <sched.h> #include <sched.h>
#include <errno.h> #include <errno.h>
#include <debug.h> #include <nuttx/debug.h>
#include <sys/param.h> #include <sys/param.h>
#include <netinet/in.h> #include <netinet/in.h>

View file

@ -37,7 +37,7 @@
#include <limits.h> #include <limits.h>
#include <inttypes.h> #include <inttypes.h>
#include <errno.h> #include <errno.h>
#include <debug.h> #include <nuttx/debug.h>
#include <nuttx/sensors/hall3ph.h> #include <nuttx/sensors/hall3ph.h>

View file

@ -27,7 +27,7 @@
#include <nuttx/config.h> #include <nuttx/config.h>
#include <cstdio> #include <cstdio>
#include <debug.h> #include <nuttx/debug.h>
//*************************************************************************** //***************************************************************************
// Definitions // Definitions

View file

@ -32,7 +32,7 @@
#include <errno.h> #include <errno.h>
#include <unistd.h> #include <unistd.h>
#include <debug.h> #include <nuttx/debug.h>
#include <nuttx/sensors/hts221.h> #include <nuttx/sensors/hts221.h>

View file

@ -33,7 +33,7 @@
#include <string.h> #include <string.h>
#include <pthread.h> #include <pthread.h>
#include <errno.h> #include <errno.h>
#include <debug.h> #include <nuttx/debug.h>
#include <fcntl.h> #include <fcntl.h>
#include <sys/ioctl.h> #include <sys/ioctl.h>
#include <nuttx/audio/audio.h> #include <nuttx/audio/audio.h>

View file

@ -31,7 +31,7 @@
#include <fcntl.h> #include <fcntl.h>
#include <pthread.h> #include <pthread.h>
#include <errno.h> #include <errno.h>
#include <debug.h> #include <nuttx/debug.h>
#include <unistd.h> #include <unistd.h>
#include <string.h> #include <string.h>

View file

@ -31,7 +31,7 @@
#include <fcntl.h> #include <fcntl.h>
#include <pthread.h> #include <pthread.h>
#include <errno.h> #include <errno.h>
#include <debug.h> #include <nuttx/debug.h>
#include <unistd.h> #include <unistd.h>
#include <sys/ioctl.h> #include <sys/ioctl.h>

View file

@ -29,7 +29,7 @@
#include <stdint.h> #include <stdint.h>
#include <stdio.h> #include <stdio.h>
#include <unistd.h> #include <unistd.h>
#include <debug.h> #include <nuttx/debug.h>
#include <arpa/inet.h> #include <arpa/inet.h>
#include <net/if.h> #include <net/if.h>

View file

@ -27,7 +27,7 @@
* Included Files * Included Files
****************************************************************************/ ****************************************************************************/
#include <debug.h> #include <nuttx/debug.h>
/**************************************************************************** /****************************************************************************
* Pre-processor Definitions * Pre-processor Definitions

View file

@ -30,7 +30,7 @@
#include <stdio.h> #include <stdio.h>
#include <stdlib.h> #include <stdlib.h>
#include <fcntl.h> #include <fcntl.h>
#include <debug.h> #include <nuttx/debug.h>
#include <unistd.h> #include <unistd.h>
#include <arpa/inet.h> #include <arpa/inet.h>

View file

@ -33,7 +33,7 @@
#include <unistd.h> #include <unistd.h>
#include <fcntl.h> #include <fcntl.h>
#include <errno.h> #include <errno.h>
#include <debug.h> #include <nuttx/debug.h>
#include <nuttx/input/keyboard.h> #include <nuttx/input/keyboard.h>

View file

@ -47,7 +47,7 @@
#include <fcntl.h> #include <fcntl.h>
#include <sched.h> #include <sched.h>
#include <errno.h> #include <errno.h>
#include <debug.h> #include <nuttx/debug.h>
#include <time.h> #include <time.h>
#include <unistd.h> #include <unistd.h>

View file

@ -32,7 +32,7 @@
#include <errno.h> #include <errno.h>
#include <unistd.h> #include <unistd.h>
#include <debug.h> #include <nuttx/debug.h>
#include <nuttx/sensors/lsm303agr.h> #include <nuttx/sensors/lsm303agr.h>

View file

@ -32,7 +32,7 @@
#include <errno.h> #include <errno.h>
#include <unistd.h> #include <unistd.h>
#include <debug.h> #include <nuttx/debug.h>
#include <nuttx/sensors/lsm6dsl.h> #include <nuttx/sensors/lsm6dsl.h>

View file

@ -36,7 +36,7 @@
#include <stdlib.h> #include <stdlib.h>
#include <stdio.h> #include <stdio.h>
#include <time.h> #include <time.h>
#include <debug.h> #include <nuttx/debug.h>
#include <poll.h> #include <poll.h>
#include <spawn.h> #include <spawn.h>
#include <lvgl/lvgl.h> #include <lvgl/lvgl.h>

View file

@ -27,7 +27,7 @@
* Included Files * Included Files
****************************************************************************/ ****************************************************************************/
#include <debug.h> #include <nuttx/debug.h>
/**************************************************************************** /****************************************************************************
* Pre-processor Definitions * Pre-processor Definitions

View file

@ -33,7 +33,7 @@
#include <fcntl.h> #include <fcntl.h>
#include <string.h> #include <string.h>
#include <errno.h> #include <errno.h>
#include <debug.h> #include <nuttx/debug.h>
#include <arpa/inet.h> #include <arpa/inet.h>
#include <net/if.h> #include <net/if.h>

View file

@ -32,7 +32,7 @@
#include <string.h> #include <string.h>
#include <errno.h> #include <errno.h>
#include <syslog.h> #include <syslog.h>
#include <debug.h> #include <nuttx/debug.h>
#include <nuttx/module.h> #include <nuttx/module.h>
#include <nuttx/lib/elf.h> #include <nuttx/lib/elf.h>

View file

@ -38,7 +38,7 @@
#include <fcntl.h> #include <fcntl.h>
#include <syslog.h> #include <syslog.h>
#include <errno.h> #include <errno.h>
#include <debug.h> #include <nuttx/debug.h>
#include <nuttx/module.h> #include <nuttx/module.h>
#include <nuttx/symtab.h> #include <nuttx/symtab.h>

View file

@ -31,7 +31,7 @@
#include <unistd.h> #include <unistd.h>
#include <fcntl.h> #include <fcntl.h>
#include <errno.h> #include <errno.h>
#include <debug.h> #include <nuttx/debug.h>
#include <nuttx/mtd/mtd.h> #include <nuttx/mtd/mtd.h>
#include <nuttx/drivers/drivers.h> #include <nuttx/drivers/drivers.h>

View file

@ -31,7 +31,7 @@
#include <unistd.h> #include <unistd.h>
#include <fcntl.h> #include <fcntl.h>
#include <errno.h> #include <errno.h>
#include <debug.h> #include <nuttx/debug.h>
#include <nuttx/mtd/mtd.h> #include <nuttx/mtd/mtd.h>
#include <nuttx/drivers/drivers.h> #include <nuttx/drivers/drivers.h>

View file

@ -39,7 +39,7 @@
#include <string.h> #include <string.h>
#include <pthread.h> #include <pthread.h>
#include <errno.h> #include <errno.h>
#include <debug.h> #include <nuttx/debug.h>
#include <net/if.h> #include <net/if.h>
#include <arpa/inet.h> #include <arpa/inet.h>

View file

@ -37,7 +37,7 @@
#include <fcntl.h> #include <fcntl.h>
#include <poll.h> #include <poll.h>
#include <errno.h> #include <errno.h>
#include <debug.h> #include <nuttx/debug.h>
#include <arpa/inet.h> #include <arpa/inet.h>
#include <netinet/in.h> #include <netinet/in.h>

View file

@ -31,7 +31,7 @@
#ifdef NETTEST_HOST #ifdef NETTEST_HOST
#else #else
# include <debug.h> # include <nuttx/debug.h>
#endif #endif
/**************************************************************************** /****************************************************************************

View file

@ -28,7 +28,7 @@
#include <stdbool.h> #include <stdbool.h>
#include <stdio.h> #include <stdio.h>
#include <debug.h> #include <nuttx/debug.h>
#include <arpa/inet.h> #include <arpa/inet.h>
#include <netinet/in.h> #include <netinet/in.h>

View file

@ -32,7 +32,7 @@
#include <stdio.h> #include <stdio.h>
#include <unistd.h> #include <unistd.h>
#include <sched.h> #include <sched.h>
#include <debug.h> #include <nuttx/debug.h>
#include "nettest.h" #include "nettest.h"

View file

@ -32,7 +32,7 @@
#include <pthread.h> #include <pthread.h>
#include <fcntl.h> #include <fcntl.h>
#include <errno.h> #include <errno.h>
#include <debug.h> #include <nuttx/debug.h>
#include <nng/nng.h> #include <nng/nng.h>
#include <nng/protocol/pubsub0/pub.h> #include <nng/protocol/pubsub0/pub.h>

View file

@ -27,7 +27,7 @@
#include <sys/types.h> #include <sys/types.h>
#include <sys/stat.h> #include <sys/stat.h>
#include <sys/ioctl.h> #include <sys/ioctl.h>
#include <debug.h> #include <nuttx/debug.h>
#include <unistd.h> #include <unistd.h>
#include <nuttx/signal.h> #include <nuttx/signal.h>

View file

@ -31,7 +31,7 @@
#include <stdint.h> #include <stdint.h>
#include <stdbool.h> #include <stdbool.h>
#include <debug.h> #include <nuttx/debug.h>
/**************************************************************************** /****************************************************************************
* Pre-processor Definitions * Pre-processor Definitions

View file

@ -38,7 +38,7 @@
#include <string.h> #include <string.h>
#include <stdlib.h> #include <stdlib.h>
#include <errno.h> #include <errno.h>
#include <debug.h> #include <nuttx/debug.h>
#include <poll.h> #include <poll.h>
#include <fcntl.h> #include <fcntl.h>

View file

@ -33,7 +33,7 @@
#include <fcntl.h> #include <fcntl.h>
#include <errno.h> #include <errno.h>
#include <fixedmath.h> #include <fixedmath.h>
#include <debug.h> #include <nuttx/debug.h>
#include <unistd.h> #include <unistd.h>
#include <nuttx/input/nunchuck.h> #include <nuttx/input/nunchuck.h>

View file

@ -31,7 +31,7 @@
#include <stdio.h> #include <stdio.h>
#include <stdlib.h> #include <stdlib.h>
#include <semaphore.h> #include <semaphore.h>
#include <debug.h> #include <nuttx/debug.h>
#include <errno.h> #include <errno.h>
#include <nuttx/nx/nx.h> #include <nuttx/nx/nx.h>

View file

@ -31,7 +31,7 @@
#include <stdio.h> #include <stdio.h>
#include <string.h> #include <string.h>
#include <ctype.h> #include <ctype.h>
#include <debug.h> #include <nuttx/debug.h>
#include <errno.h> #include <errno.h>
#include <nuttx/nx/nx.h> #include <nuttx/nx/nx.h>

View file

@ -38,7 +38,7 @@
#include <sched.h> #include <sched.h>
#include <pthread.h> #include <pthread.h>
#include <errno.h> #include <errno.h>
#include <debug.h> #include <nuttx/debug.h>
#include <nuttx/arch.h> #include <nuttx/arch.h>
#include <nuttx/board.h> #include <nuttx/board.h>

View file

@ -34,7 +34,7 @@
#include <semaphore.h> #include <semaphore.h>
#include <sys/param.h> #include <sys/param.h>
#include <errno.h> #include <errno.h>
#include <debug.h> #include <nuttx/debug.h>
#include <unistd.h> #include <unistd.h>
#include <nuttx/nx/nx.h> #include <nuttx/nx/nx.h>

View file

@ -38,7 +38,7 @@
#include <sched.h> #include <sched.h>
#include <pthread.h> #include <pthread.h>
#include <errno.h> #include <errno.h>
#include <debug.h> #include <nuttx/debug.h>
#include <nuttx/arch.h> #include <nuttx/arch.h>
#include <nuttx/board.h> #include <nuttx/board.h>

View file

@ -34,7 +34,7 @@
#include <unistd.h> #include <unistd.h>
#include <string.h> #include <string.h>
#include <pthread.h> #include <pthread.h>
#include <debug.h> #include <nuttx/debug.h>
#include <errno.h> #include <errno.h>
#include <nuttx/symtab.h> #include <nuttx/symtab.h>

View file

@ -33,7 +33,7 @@
#include <string.h> #include <string.h>
#include <semaphore.h> #include <semaphore.h>
#include <errno.h> #include <errno.h>
#include <debug.h> #include <nuttx/debug.h>
#include <nuttx/nx/nx.h> #include <nuttx/nx/nx.h>
#include <nuttx/nx/nxglib.h> #include <nuttx/nx/nxglib.h>

View file

@ -38,7 +38,7 @@
#include <sched.h> #include <sched.h>
#include <pthread.h> #include <pthread.h>
#include <errno.h> #include <errno.h>
#include <debug.h> #include <nuttx/debug.h>
#include <nuttx/arch.h> #include <nuttx/arch.h>
#include <nuttx/board.h> #include <nuttx/board.h>

View file

@ -33,7 +33,7 @@
#include <string.h> #include <string.h>
#include <semaphore.h> #include <semaphore.h>
#include <errno.h> #include <errno.h>
#include <debug.h> #include <nuttx/debug.h>
#include <nuttx/nx/nx.h> #include <nuttx/nx/nx.h>
#include <nuttx/nx/nxglib.h> #include <nuttx/nx/nxglib.h>

View file

@ -38,7 +38,7 @@
#include <sched.h> #include <sched.h>
#include <pthread.h> #include <pthread.h>
#include <errno.h> #include <errno.h>
#include <debug.h> #include <nuttx/debug.h>
#include <nuttx/arch.h> #include <nuttx/arch.h>
#include <nuttx/board.h> #include <nuttx/board.h>

View file

@ -32,7 +32,7 @@
#include <unistd.h> #include <unistd.h>
#include <string.h> #include <string.h>
#include <sys/param.h> #include <sys/param.h>
#include <debug.h> #include <nuttx/debug.h>
#include <fixedmath.h> #include <fixedmath.h>
#include <inttypes.h> #include <inttypes.h>

View file

@ -36,7 +36,7 @@
#include <string.h> #include <string.h>
#include <sched.h> #include <sched.h>
#include <errno.h> #include <errno.h>
#include <debug.h> #include <nuttx/debug.h>
#include <nuttx/arch.h> #include <nuttx/arch.h>
#include <nuttx/board.h> #include <nuttx/board.h>

View file

@ -38,7 +38,7 @@
#include <string.h> #include <string.h>
#include <assert.h> #include <assert.h>
#include <errno.h> #include <errno.h>
#include <debug.h> #include <nuttx/debug.h>
#ifdef CONFIG_NX_LCDDRIVER #ifdef CONFIG_NX_LCDDRIVER
# include <nuttx/lcd/lcd.h> # include <nuttx/lcd/lcd.h>

View file

@ -33,7 +33,7 @@
#include <string.h> #include <string.h>
#include <semaphore.h> #include <semaphore.h>
#include <errno.h> #include <errno.h>
#include <debug.h> #include <nuttx/debug.h>
#include <nuttx/nx/nx.h> #include <nuttx/nx/nx.h>
#include <nuttx/nx/nxfonts.h> #include <nuttx/nx/nxfonts.h>

View file

@ -35,7 +35,7 @@
#include <string.h> #include <string.h>
#include <semaphore.h> #include <semaphore.h>
#include <errno.h> #include <errno.h>
#include <debug.h> #include <nuttx/debug.h>
#include <nuttx/nx/nx.h> #include <nuttx/nx/nx.h>
#include <nuttx/nx/nxglib.h> #include <nuttx/nx/nxglib.h>

View file

@ -33,7 +33,7 @@
#include <string.h> #include <string.h>
#include <semaphore.h> #include <semaphore.h>
#include <errno.h> #include <errno.h>
#include <debug.h> #include <nuttx/debug.h>
#include <nuttx/nx/nx.h> #include <nuttx/nx/nx.h>
#include <nuttx/nx/nxfonts.h> #include <nuttx/nx/nxfonts.h>

View file

@ -38,7 +38,7 @@
#include <sched.h> #include <sched.h>
#include <pthread.h> #include <pthread.h>
#include <errno.h> #include <errno.h>
#include <debug.h> #include <nuttx/debug.h>
#include <nuttx/arch.h> #include <nuttx/arch.h>
#include <nuttx/board.h> #include <nuttx/board.h>

View file

@ -32,7 +32,7 @@
#include <string.h> #include <string.h>
#include <semaphore.h> #include <semaphore.h>
#include <errno.h> #include <errno.h>
#include <debug.h> #include <nuttx/debug.h>
#include <nuttx/nx/nx.h> #include <nuttx/nx/nx.h>
#include <nuttx/nx/nxfonts.h> #include <nuttx/nx/nxfonts.h>

View file

@ -32,7 +32,7 @@
#include <string.h> #include <string.h>
#include <ctype.h> #include <ctype.h>
#include <errno.h> #include <errno.h>
#include <debug.h> #include <nuttx/debug.h>
#include <nuttx/nx/nx.h> #include <nuttx/nx/nx.h>
#include <nuttx/nx/nxfonts.h> #include <nuttx/nx/nxfonts.h>
@ -365,7 +365,7 @@ nxtext_getglyph(NXHANDLE hfont, FAR struct nxtext_state_s *st, uint8_t ch)
* *
* Description: * Description:
* This is part of the nxtext_putc logic. It creates and positions a * This is part of the nxtext_putc logic. It creates and positions a
* the character and renders (or re-uses) a glyph for font. * the character and renders (or reuses) a glyph for font.
* *
****************************************************************************/ ****************************************************************************/

View file

@ -27,7 +27,7 @@
* Included Files * Included Files
****************************************************************************/ ****************************************************************************/
#include <debug.h> #include <nuttx/debug.h>
#include <netpacket/ieee802154.h> #include <netpacket/ieee802154.h>
/**************************************************************************** /****************************************************************************

View file

@ -39,7 +39,7 @@
#include <string.h> #include <string.h>
#include <pthread.h> #include <pthread.h>
#include <errno.h> #include <errno.h>
#include <debug.h> #include <nuttx/debug.h>
#include <net/if.h> #include <net/if.h>
#include <arpa/inet.h> #include <arpa/inet.h>

View file

@ -39,7 +39,7 @@
#include <pthread.h> #include <pthread.h>
#include <fcntl.h> #include <fcntl.h>
#include <errno.h> #include <errno.h>
#include <debug.h> #include <nuttx/debug.h>
#include <net/if.h> #include <net/if.h>
#include <arpa/inet.h> #include <arpa/inet.h>

View file

@ -36,7 +36,7 @@
#include <poll.h> #include <poll.h>
#include <fcntl.h> #include <fcntl.h>
#include <errno.h> #include <errno.h>
#include <debug.h> #include <nuttx/debug.h>
#include <arpa/inet.h> #include <arpa/inet.h>

View file

@ -36,7 +36,7 @@
#include <fcntl.h> #include <fcntl.h>
#include <poll.h> #include <poll.h>
#include <errno.h> #include <errno.h>
#include <debug.h> #include <nuttx/debug.h>
#include "poll_internal.h" #include "poll_internal.h"

View file

@ -37,7 +37,7 @@
#include <pthread.h> #include <pthread.h>
#include <fcntl.h> #include <fcntl.h>
#include <errno.h> #include <errno.h>
#include <debug.h> #include <nuttx/debug.h>
#include "poll_internal.h" #include "poll_internal.h"

View file

@ -37,7 +37,7 @@
#include <string.h> #include <string.h>
#include <fcntl.h> #include <fcntl.h>
#include <spawn.h> #include <spawn.h>
#include <debug.h> #include <nuttx/debug.h>
#include <errno.h> #include <errno.h>
#include <nuttx/drivers/ramdisk.h> #include <nuttx/drivers/ramdisk.h>

View file

@ -35,7 +35,7 @@
#include <stdlib.h> #include <stdlib.h>
#include <stdbool.h> #include <stdbool.h>
#include <errno.h> #include <errno.h>
#include <debug.h> #include <nuttx/debug.h>
#include <sys/ioctl.h> #include <sys/ioctl.h>
#ifndef CONFIG_NSH_ARCHINIT #ifndef CONFIG_NSH_ARCHINIT

View file

@ -28,7 +28,7 @@
#include <stdint.h> #include <stdint.h>
#include <stdbool.h> #include <stdbool.h>
#include <debug.h> #include <nuttx/debug.h>
#include <stdio.h> #include <stdio.h>
#include <fixedmath.h> #include <fixedmath.h>
#include <sys/types.h> #include <sys/types.h>

View file

@ -31,7 +31,7 @@
#include <stdio.h> #include <stdio.h>
#include <stdlib.h> #include <stdlib.h>
#include <semaphore.h> #include <semaphore.h>
#include <debug.h> #include <nuttx/debug.h>
#include <errno.h> #include <errno.h>
#include <nuttx/nx/nx.h> #include <nuttx/nx/nx.h>

View file

@ -39,7 +39,7 @@
#include <pthread.h> #include <pthread.h>
#include <fixedmath.h> #include <fixedmath.h>
#include <errno.h> #include <errno.h>
#include <debug.h> #include <nuttx/debug.h>
#include <nuttx/arch.h> #include <nuttx/arch.h>
#include <nuttx/board.h> #include <nuttx/board.h>

View file

@ -31,7 +31,7 @@
#include <stdio.h> #include <stdio.h>
#include <stdlib.h> #include <stdlib.h>
#include <semaphore.h> #include <semaphore.h>
#include <debug.h> #include <nuttx/debug.h>
#include <errno.h> #include <errno.h>
#include <nuttx/nx/nx.h> #include <nuttx/nx/nx.h>

View file

@ -39,7 +39,7 @@
#include <pthread.h> #include <pthread.h>
#include <fixedmath.h> #include <fixedmath.h>
#include <errno.h> #include <errno.h>
#include <debug.h> #include <nuttx/debug.h>
#include <nuttx/arch.h> #include <nuttx/arch.h>
#include <nuttx/board.h> #include <nuttx/board.h>

View file

@ -33,7 +33,7 @@
#include <inttypes.h> #include <inttypes.h>
#include <unistd.h> #include <unistd.h>
#include <string.h> #include <string.h>
#include <debug.h> #include <nuttx/debug.h>
#include <fixedmath.h> #include <fixedmath.h>
#include <nuttx/nx/nx.h> #include <nuttx/nx/nx.h>

View file

@ -34,7 +34,7 @@
#include <unistd.h> #include <unistd.h>
#include <fcntl.h> #include <fcntl.h>
#include <errno.h> #include <errno.h>
#include <debug.h> #include <nuttx/debug.h>
#include <string.h> #include <string.h>
#include <inttypes.h> #include <inttypes.h>
@ -199,7 +199,7 @@ static void pwm_help(FAR struct pwm_state_s *pwm)
printf("Usage: pwm [OPTIONS]\n"); printf("Usage: pwm [OPTIONS]\n");
printf("\nArguments are \"sticky\". " printf("\nArguments are \"sticky\". "
"For example, once the PWM frequency is\n"); "For example, once the PWM frequency is\n");
printf("specified, that frequency will be re-used until it is changed.\n"); printf("specified, that frequency will be reused until it is changed.\n");
printf("\n\"sticky\" OPTIONS include:\n"); printf("\n\"sticky\" OPTIONS include:\n");
printf(" [-p devpath] selects the PWM device. " printf(" [-p devpath] selects the PWM device. "
"Default: %s Current: %s\n", "Default: %s Current: %s\n",

View file

@ -37,7 +37,7 @@
#include <limits.h> #include <limits.h>
#include <inttypes.h> #include <inttypes.h>
#include <errno.h> #include <errno.h>
#include <debug.h> #include <nuttx/debug.h>
#include <nuttx/sensors/qencoder.h> #include <nuttx/sensors/qencoder.h>
@ -317,7 +317,7 @@ int main(int argc, FAR char *argv[])
goto errout_with_dev; goto errout_with_dev;
} }
/* GETINDEX succesful */ /* GETINDEX successful */
else else
{ {

View file

@ -31,7 +31,7 @@
#include <string.h> #include <string.h>
#include <fcntl.h> #include <fcntl.h>
#include <errno.h> #include <errno.h>
#include <debug.h> #include <nuttx/debug.h>
#include <unistd.h> #include <unistd.h>
/**************************************************************************** /****************************************************************************

View file

@ -34,7 +34,7 @@
#include <unistd.h> #include <unistd.h>
#include <string.h> #include <string.h>
#include <errno.h> #include <errno.h>
#include <debug.h> #include <nuttx/debug.h>
#ifdef CONFIG_ARCH_RELAYS #ifdef CONFIG_ARCH_RELAYS

View file

@ -31,7 +31,7 @@
#include <fcntl.h> #include <fcntl.h>
#include <pthread.h> #include <pthread.h>
#include <errno.h> #include <errno.h>
#include <debug.h> #include <nuttx/debug.h>
#include <unistd.h> #include <unistd.h>
#include "rmtchar.h" #include "rmtchar.h"

View file

@ -33,7 +33,7 @@
#include <string.h> #include <string.h>
#include <pthread.h> #include <pthread.h>
#include <errno.h> #include <errno.h>
#include <debug.h> #include <nuttx/debug.h>
#include "rmtchar.h" #include "rmtchar.h"
@ -112,7 +112,7 @@ static void rmtchar_help(FAR struct rmtchar_state_s *rmtchar)
printf("Usage: rmtchar [OPTIONS]\n"); printf("Usage: rmtchar [OPTIONS]\n");
printf("\nArguments are \"sticky\".\n"); printf("\nArguments are \"sticky\".\n");
printf("For example, once the RMT character device is\n"); printf("For example, once the RMT character device is\n");
printf("specified, that device will be re-used until it is changed.\n"); printf("specified, that device will be reused until it is changed.\n");
printf("\n\"sticky\" OPTIONS include:\n"); printf("\n\"sticky\" OPTIONS include:\n");
printf(" [-i items] selects the number of words (items) to be transmitted" printf(" [-i items] selects the number of words (items) to be transmitted"
" or received by the RMT character device. " " or received by the RMT character device. "

View file

@ -31,7 +31,7 @@
#include <fcntl.h> #include <fcntl.h>
#include <pthread.h> #include <pthread.h>
#include <errno.h> #include <errno.h>
#include <debug.h> #include <nuttx/debug.h>
#include <unistd.h> #include <unistd.h>
#include "rmtchar.h" #include "rmtchar.h"

View file

@ -31,7 +31,7 @@
#include <fcntl.h> #include <fcntl.h>
#include <pthread.h> #include <pthread.h>
#include <errno.h> #include <errno.h>
#include <debug.h> #include <nuttx/debug.h>
#include <unistd.h> #include <unistd.h>
#include <nuttx/audio/audio.h> #include <nuttx/audio/audio.h>

View file

@ -35,7 +35,7 @@
#include <stdlib.h> #include <stdlib.h>
#include <stdbool.h> #include <stdbool.h>
#include <errno.h> #include <errno.h>
#include <debug.h> #include <nuttx/debug.h>
#include <sys/ioctl.h> #include <sys/ioctl.h>
#include <sys/boardctl.h> #include <sys/boardctl.h>

View file

@ -37,7 +37,7 @@
#include <syslog.h> #include <syslog.h>
#include <dlfcn.h> #include <dlfcn.h>
#include <errno.h> #include <errno.h>
#include <debug.h> #include <nuttx/debug.h>
#include <unistd.h> #include <unistd.h>
#include <nuttx/symtab.h> #include <nuttx/symtab.h>

View file

@ -37,7 +37,7 @@
#include <string.h> #include <string.h>
#include <stdlib.h> #include <stdlib.h>
#include <errno.h> #include <errno.h>
#include <debug.h> #include <nuttx/debug.h>
#include <poll.h> #include <poll.h>
#include <fcntl.h> #include <fcntl.h>

View file

@ -31,7 +31,7 @@
#ifdef TCPBLASTER_HOST #ifdef TCPBLASTER_HOST
#else #else
# include <debug.h> # include <nuttx/debug.h>
#endif #endif
/**************************************************************************** /****************************************************************************

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