nuttx-apps/examples
Xiang Xiao f9f59bd0f8 !apps: drop redundant casts on tv_sec/tv_nsec and fix printf formats
Now that time_t is unconditionally 64-bit (signed int64_t) and the
struct timespec fields tv_sec / tv_nsec are wide enough on their own,
the explicit (uint64_t)/(int64_t)/(int) casts that used to guard the
multiplications and subtractions in *_us / *_ms / *_ns helpers are no
longer needed.  Drop them to keep the timekeeping math readable.

In the same spirit, this commit also normalises the printf-style format
specifiers and casts used to print tv_sec / tv_nsec / tv_usec values.
The prior code was a mix of "%d"/"%u"/"%ld"/"%lu"/"%lld" with matching
(int)/(unsigned long)/(long long) casts; some formats truncated time_t
on 32-bit hosts, others mismatched signedness or width.  Replace all
such cases with the portable POSIX-recommended forms:

  - tv_sec  (time_t,       signed, impl-defined width) -> %jd  + (intmax_t)
  - tv_nsec (long,         signed)                     -> %ld  (no cast)
  - tv_usec (suseconds_t / long)                       -> %ld  (no cast)

Also drop two stale `(FAR const time_t *)&ts.tv_sec` casts that are
unnecessary now that ts.tv_sec is plain time_t.

Arithmetic-cleanup files (existing scope):

  - benchmarks/cyclictest/cyclictest.c:        timediff_us()
  - benchmarks/sd_bench/sd_bench_main.c:       get_time_delta_us()
  - examples/oneshot/oneshot_main.c:           maxus computation
  - examples/watchdog/watchdog_main.c:         current_time_ms (x2)
  - industry/nxmodbus/nxmb_internal.h:         nxmb_util_clock_ms()
  - netutils/ntpclient/ntpclient.c:            timespec2ntp()
  - netutils/ptpd/ptpd.c:                      ptp_adjtime()
  - system/dd/dd_main.c:                       elapsed accounting
  - testing/drivers/drivertest/drivertest_posix_timer.c:
                                               get_timestamp()
  - testing/drivers/sd_stress/sd_stress_main.c:get_time_delta()
  - testing/sched/getprime/getprime_main.c:    elapsed accounting
  - testing/sched/pthread_mutex_perf/pthread_mutex_perf.c:
                                               timespec_avg()

Printf-format-fix files (new in this revision):

  - examples/adjtime/adjtime_main.c
  - examples/charger/charger_main.c
  - examples/netpkt/netpkt_ethercat.c
  - fsutils/mkfatfs/mkfatfs.c
  - graphics/tiff/tiff_initialize.c
  - netutils/ptpd/ptpd.c
  - nshlib/nsh_timcmds.c
  - system/coredump/coredump.c
  - system/ptpd/ptpd_main.c
  - testing/drivers/drivertest/drivertest_oneshot.c
  - testing/mm/kasantest/kasantest.c
  - testing/ostest/semtimed.c
  - testing/sched/pthread_mutex_perf/pthread_mutex_perf.c
  - testing/sched/timerjitter/timerjitter.c
  - testing/testsuites/kernel/time/cases/clock_test_clock01.c
  - testing/testsuites/kernel/time/cases/clock_test_smoke.c

No behavioural change.

Signed-off-by: Xiang Xiao <xiaoxiang@xiaomi.com>
2026-05-22 13:38:25 +08:00
..
abntcodi examples: migrate to SPDX identifier 2024-12-30 18:02:50 +08:00
adc include/debug.h: Use <nuttx/debug.h> in apps 2026-04-11 10:39:27 -03:00
adjtime !apps: drop redundant casts on tv_sec/tv_nsec and fix printf formats 2026-05-22 13:38:25 +08:00
ads7046 examples/ads7046: Add new example for ADS7046 ADC 2025-08-20 02:28:15 +08:00
adxl372_test examples: Add depends on 2025-01-03 21:28:20 +08:00
ajoystick include/debug.h: Use <nuttx/debug.h> in apps 2026-04-11 10:39:27 -03:00
alarm !apps: replace sclock_t with clock_t and drop redundant time_t/off_t casts 2026-05-11 17:38:32 +08:00
amg88xx examples/amg88xx: fix kconfig 2025-02-05 10:51:56 +08:00
apa102 examples: Add depends on 2025-01-03 21:28:20 +08:00
apds9960 examples: migrate to SPDX identifier 2024-12-30 18:02:50 +08:00
audio_rttl examples: migrate to SPDX identifier 2024-12-30 18:02:50 +08:00
bastest examples: migrate to SPDX identifier 2024-12-30 18:02:50 +08:00
battery include/debug.h: Use <nuttx/debug.h> in apps 2026-04-11 10:39:27 -03:00
ble examples: migrate to SPDX identifier 2024-12-30 18:02:50 +08:00
bme680 examples: migrate to SPDX identifier 2024-12-30 18:02:50 +08:00
bmi160 examples/bmi160: Fix typo of depends on 2025-03-07 11:21:34 +01:00
bmp180 examples: migrate to SPDX identifier 2024-12-30 18:02:50 +08:00
bmp280 examples: migrate to SPDX identifier 2024-12-30 18:02:50 +08:00
bridge include/debug.h: Use <nuttx/debug.h> in apps 2026-04-11 10:39:27 -03:00
buttons sched/signal: Add support to disable partial or all signals 2026-01-15 15:48:54 +08:00
calib_udelay examples: migrate to SPDX identifier 2024-12-30 18:02:50 +08:00
camera include/debug.h: Use <nuttx/debug.h> in apps 2026-04-11 10:39:27 -03:00
can include/debug.h: Use <nuttx/debug.h> in apps 2026-04-11 10:39:27 -03:00
capture include/debug.h: Use <nuttx/debug.h> in apps 2026-04-11 10:39:27 -03:00
cbortest examples: migrate to SPDX identifier 2024-12-30 18:02:50 +08:00
cctype examples: migrate to SPDX identifier 2024-12-30 18:02:50 +08:00
charger !apps: drop redundant casts on tv_sec/tv_nsec and fix printf formats 2026-05-22 13:38:25 +08:00
chat include/debug.h: Use <nuttx/debug.h> in apps 2026-04-11 10:39:27 -03:00
chrono signals: fix build and runtime issues when signals all isabled 2026-01-19 22:55:19 +08:00
configdata include/debug.h: Use <nuttx/debug.h> in apps 2026-04-11 10:39:27 -03:00
cordic include/debug.h: Use <nuttx/debug.h> in apps 2026-04-11 10:39:27 -03:00
cpuhog examples: migrate to SPDX identifier 2024-12-30 18:02:50 +08:00
cromfs examples: migrate to SPDX identifier 2024-12-30 18:02:50 +08:00
dac examples: migrate to SPDX identifier 2024-12-30 18:02:50 +08:00
dhcpd dhcpd: Supports kernel mode compilation 2026-01-02 12:29:42 -03:00
dhtxx examples: Add depends on 2025-01-03 21:28:20 +08:00
discover include/debug.h: Use <nuttx/debug.h> in apps 2026-04-11 10:39:27 -03:00
djoystick include/debug.h: Use <nuttx/debug.h> in apps 2026-04-11 10:39:27 -03:00
dronecan !apps: drop CONFIG_SYSTEM_TIME64 conditionals 2026-05-11 17:38:32 +08:00
elf include/debug.h: Use <nuttx/debug.h> in apps 2026-04-11 10:39:27 -03:00
embedlog examples: migrate to SPDX identifier 2024-12-30 18:02:50 +08:00
esp32_himem examples: migrate to SPDX identifier 2024-12-30 18:02:50 +08:00
etl include/debug.h: Use <nuttx/debug.h> in apps 2026-04-11 10:39:27 -03:00
fb fb: fix no mmap with get_pinfo, kernel build with data abort 2025-12-01 19:09:54 +08:00
fbcon include/debug.h: Use <nuttx/debug.h> in apps 2026-04-11 10:39:27 -03:00
fboverlay examples: migrate to SPDX identifier 2024-12-30 18:02:50 +08:00
flash_test examples: migrate to SPDX identifier 2024-12-30 18:02:50 +08:00
flowc include/debug.h: Use <nuttx/debug.h> in apps 2026-04-11 10:39:27 -03:00
fmsynth examples: migrate to SPDX identifier 2024-12-30 18:02:50 +08:00
foc !apps: Simplify NuttX initialization 2026-05-06 13:27:05 +08:00
ft80x include/debug.h: Use <nuttx/debug.h> in apps 2026-04-11 10:39:27 -03:00
ftpc examples: migrate to SPDX identifier 2024-12-30 18:02:50 +08:00
ftpd include/debug.h: Use <nuttx/debug.h> in apps 2026-04-11 10:39:27 -03:00
fxos8700cq_test examples: migrate to SPDX identifier 2024-12-30 18:02:50 +08:00
gpio examples: migrate to SPDX identifier 2024-12-30 18:02:50 +08:00
gps examples/gps: fix a few printf formats 2025-04-10 16:47:21 +08:00
hall include/debug.h: Use <nuttx/debug.h> in apps 2026-04-11 10:39:27 -03:00
hdc1008_demo examples: Add depends on 2025-01-03 21:28:20 +08:00
hello examples: migrate to SPDX identifier 2024-12-30 18:02:50 +08:00
hello_d examples: migrate to SPDX identifier 2024-12-30 18:02:50 +08:00
hello_nim examples/hello_nim/Kconfig: name consistent with other Hello World apps 2026-04-13 00:28:32 +08:00
hello_swift examples: migrate to SPDX identifier 2024-12-30 18:02:50 +08:00
hello_wasm examples: migrate to SPDX identifier 2024-12-30 18:02:50 +08:00
hello_zig examples: migrate to SPDX identifier 2024-12-30 18:02:50 +08:00
helloxx include/debug.h: Use <nuttx/debug.h> in apps 2026-04-11 10:39:27 -03:00
hidkbd examples: Add depends on 2025-01-03 21:28:20 +08:00
hts221_reader include/debug.h: Use <nuttx/debug.h> in apps 2026-04-11 10:39:27 -03:00
hx711 examples: migrate to SPDX identifier 2024-12-30 18:02:50 +08:00
i2schar include/debug.h: Use <nuttx/debug.h> in apps 2026-04-11 10:39:27 -03:00
i2sloop signals: fix build and runtime issues when signals all isabled 2026-01-19 22:55:19 +08:00
igmp include/debug.h: Use <nuttx/debug.h> in apps 2026-04-11 10:39:27 -03:00
ina219 examples: Add depends on 2025-01-03 21:28:20 +08:00
ina226 examples: Add depends on 2025-01-03 21:28:20 +08:00
ini_dumper examples: migrate to SPDX identifier 2024-12-30 18:02:50 +08:00
ipcfg include/debug.h: Use <nuttx/debug.h> in apps 2026-04-11 10:39:27 -03:00
ipforward signals: fix build and runtime issues when signals all isabled 2026-01-19 22:55:19 +08:00
isl29023 examples: Add depends on 2025-01-03 21:28:20 +08:00
json examples: migrate to SPDX identifier 2024-12-30 18:02:50 +08:00
keyboard include/debug.h: Use <nuttx/debug.h> in apps 2026-04-11 10:39:27 -03:00
leds examples: migrate to SPDX identifier 2024-12-30 18:02:50 +08:00
leds_rust examples: migrate to SPDX identifier 2024-12-30 18:02:50 +08:00
leds_zig examples: migrate to SPDX identifier 2024-12-30 18:02:50 +08:00
libtest examples: migrate to SPDX identifier 2024-12-30 18:02:50 +08:00
lis3dsh_reader include/debug.h: Use <nuttx/debug.h> in apps 2026-04-11 10:39:27 -03:00
lp503x lp503x_main: Minor fix 2025-01-16 22:48:45 +08:00
lsm6dsl_reader include/debug.h: Use <nuttx/debug.h> in apps 2026-04-11 10:39:27 -03:00
lsm303_reader include/debug.h: Use <nuttx/debug.h> in apps 2026-04-11 10:39:27 -03:00
lsm330spi_test examples: Add depends on 2025-01-03 21:28:20 +08:00
ltr308 examples: migrate to SPDX identifier 2024-12-30 18:02:50 +08:00
lua_module examples: migrate to SPDX identifier 2024-12-30 18:02:50 +08:00
lvgldemo !apps: Simplify NuttX initialization 2026-05-06 13:27:05 +08:00
lvglterm !apps: Simplify NuttX initialization 2026-05-06 13:27:05 +08:00
max31855 examples: migrate to SPDX identifier 2024-12-30 18:02:50 +08:00
mcuboot examples/mcuboot: add example to update from binary in local storage 2025-07-16 09:49:45 +08:00
mdnsd testing: add unistd.h and pthread.h headers 2026-01-26 19:32:27 +08:00
media examples: migrate to SPDX identifier 2024-12-30 18:02:50 +08:00
mld include/debug.h: Use <nuttx/debug.h> in apps 2026-04-11 10:39:27 -03:00
mlx90614 examples: migrate to SPDX identifier 2024-12-30 18:02:50 +08:00
mml_parser examples: migrate to SPDX identifier 2024-12-30 18:02:50 +08:00
modbus examples: migrate to SPDX identifier 2024-12-30 18:02:50 +08:00
modbusmaster examples: migrate to SPDX identifier 2024-12-30 18:02:50 +08:00
module include/debug.h: Use <nuttx/debug.h> in apps 2026-04-11 10:39:27 -03:00
mount style: Fix coding style violations in nuttx-apps 2026-01-12 00:54:48 +08:00
mqttc examples/mqttc: Fix mqtt_init() failed message typo (ERRPR -> ERROR). 2026-03-02 17:14:44 +01:00
mtdpart include/debug.h: Use <nuttx/debug.h> in apps 2026-04-11 10:39:27 -03:00
mtdrwb include/debug.h: Use <nuttx/debug.h> in apps 2026-04-11 10:39:27 -03:00
netlink_route !apps: drop CONFIG_SYSTEM_TIME64 conditionals 2026-05-11 17:38:32 +08:00
netloop include/debug.h: Use <nuttx/debug.h> in apps 2026-04-11 10:39:27 -03:00
netpkt !apps: drop redundant casts on tv_sec/tv_nsec and fix printf formats 2026-05-22 13:38:25 +08:00
nettest include/debug.h: Use <nuttx/debug.h> in apps 2026-04-11 10:39:27 -03:00
nimble !apps: Simplify NuttX initialization 2026-05-06 13:27:05 +08:00
nimble_blecent !apps: Simplify NuttX initialization 2026-05-06 13:27:05 +08:00
nimble_bleprph !apps: Simplify NuttX initialization 2026-05-06 13:27:05 +08:00
nng_test include/debug.h: Use <nuttx/debug.h> in apps 2026-04-11 10:39:27 -03:00
noteprintf !compiler: drop CONFIG_HAVE_LONG_LONG and require long long support 2026-05-11 17:38:32 +08:00
nrf24l01_btle include/debug.h: Use <nuttx/debug.h> in apps 2026-04-11 10:39:27 -03:00
nrf24l01_term include/debug.h: Use <nuttx/debug.h> in apps 2026-04-11 10:39:27 -03:00
null examples: migrate to SPDX identifier 2024-12-30 18:02:50 +08:00
nunchuck include/debug.h: Use <nuttx/debug.h> in apps 2026-04-11 10:39:27 -03:00
nx include/debug.h: fix checkpatch fallout in touched apps files 2026-04-11 10:39:27 -03:00
nxdemo include/debug.h: Use <nuttx/debug.h> in apps 2026-04-11 10:39:27 -03:00
nxflat include/debug.h: Use <nuttx/debug.h> in apps 2026-04-11 10:39:27 -03:00
nxhello include/debug.h: fix checkpatch fallout in touched apps files 2026-04-11 10:39:27 -03:00
nximage include/debug.h: fix checkpatch fallout in touched apps files 2026-04-11 10:39:27 -03:00
nxlines include/debug.h: fix checkpatch fallout in touched apps files 2026-04-11 10:39:27 -03:00
nxmbserver modbus: add nxmodbus 2026-04-20 12:45:17 -03:00
nxscope !compiler: drop CONFIG_HAVE_LONG_LONG and require long long support 2026-05-11 17:38:32 +08:00
nxterm include/debug.h: fix checkpatch fallout in touched apps files 2026-04-11 10:39:27 -03:00
nxtext include/debug.h: fix checkpatch fallout in touched apps files 2026-04-11 10:39:27 -03:00
obd2 examples: migrate to SPDX identifier 2024-12-30 18:02:50 +08:00
oneshot !apps: drop redundant casts on tv_sec/tv_nsec and fix printf formats 2026-05-22 13:38:25 +08:00
opencyphal examples: migrate to SPDX identifier 2024-12-30 18:02:50 +08:00
optee examples/optee: Correct use of shm reg id and flags 2025-05-13 21:17:51 +08:00
optee_gp tee/libteec, examples/optee_gp: Fix cmake build 2025-08-02 09:59:21 -03:00
pca9635 examples: Add depends on 2025-01-03 21:28:20 +08:00
pdcurses examples: migrate to SPDX identifier 2024-12-30 18:02:50 +08:00
pf_ieee802154 include/debug.h: Use <nuttx/debug.h> in apps 2026-04-11 10:39:27 -03:00
pipe examples/pipe: bugfix testcase of fifo 2026-01-22 19:53:39 +08:00
poll include/debug.h: Use <nuttx/debug.h> in apps 2026-04-11 10:39:27 -03:00
popen apps/examples/popen: Modify kconfig file 2026-01-22 19:52:02 +08:00
posix_spawn include/debug.h: Use <nuttx/debug.h> in apps 2026-04-11 10:39:27 -03:00
posix_stdio examples/posix_stdio: Fix Kconfig to define default stack size 2025-06-01 09:21:15 -03:00
powerled !apps: Simplify NuttX initialization 2026-05-06 13:27:05 +08:00
powermonitor include/debug.h: Use <nuttx/debug.h> in apps 2026-04-11 10:39:27 -03:00
pppd examples: migrate to SPDX identifier 2024-12-30 18:02:50 +08:00
pty_test examples: migrate to SPDX identifier 2024-12-30 18:02:50 +08:00
pwfb include/debug.h: fix checkpatch fallout in touched apps files 2026-04-11 10:39:27 -03:00
pwlines include/debug.h: fix checkpatch fallout in touched apps files 2026-04-11 10:39:27 -03:00
pwm examples/pwm: remove references to CONFIG_PWM_MULTICHAN 2026-05-18 11:35:09 -04:00
qencoder include/debug.h: fix checkpatch fallout in touched apps files 2026-04-11 10:39:27 -03:00
random include/debug.h: Use <nuttx/debug.h> in apps 2026-04-11 10:39:27 -03:00
relays include/debug.h: Use <nuttx/debug.h> in apps 2026-04-11 10:39:27 -03:00
rfid_readuid examples: Add depends on 2025-01-03 21:28:20 +08:00
rgbled examples: migrate to SPDX identifier 2024-12-30 18:02:50 +08:00
romfs examples/romfs:add EXAMPLES_ROMFS_RAMDEVNO 2025-03-05 10:02:22 +01:00
rpmsgsocket rpmsgsocket:add rpmsg socket test cases 2026-01-24 17:07:42 +08:00
rust examples/rust/slint: Update nuttx crate branch from master to main and fix pixel format check. 2025-03-24 20:34:29 +08:00
scd41 examples: migrate to SPDX identifier 2024-12-30 18:02:50 +08:00
sendmail examples: migrate to SPDX identifier 2024-12-30 18:02:50 +08:00
sensor_fusion examples: migrate to SPDX identifier 2024-12-30 18:02:50 +08:00
serialblaster examples: migrate to SPDX identifier 2024-12-30 18:02:50 +08:00
serialrx examples: migrate to SPDX identifier 2024-12-30 18:02:50 +08:00
serloop examples: migrate to SPDX identifier 2024-12-30 18:02:50 +08:00
settings examples: migrate to SPDX identifier 2024-12-30 18:02:50 +08:00
shm_test examples: migrate to SPDX identifier 2024-12-30 18:02:50 +08:00
sht3x examples: migrate to SPDX identifier 2024-12-30 18:02:50 +08:00
shv-nxboot-updater signals: fix build and runtime issues when signals all isabled 2026-01-19 22:55:19 +08:00
shv-test netutils/libshvc: add Silicon Heaven integration into NuttX and SHV examples 2025-09-24 21:43:07 +08:00
slcd examples: Add depends on 2025-01-03 21:28:20 +08:00
smf system/smf: Port SMF .c/.h files to NuttX 2026-01-05 12:50:04 -05:00
smps !apps: Simplify NuttX initialization 2026-05-06 13:27:05 +08:00
sotest include/debug.h: Use <nuttx/debug.h> in apps 2026-04-11 10:39:27 -03:00
spislv_test apps/examples: Add path option to SPI Slave test 2026-05-19 07:02:31 -03:00
stat examples: migrate to SPDX identifier 2024-12-30 18:02:50 +08:00
stepper examples: migrate to SPDX identifier 2024-12-30 18:02:50 +08:00
sx127x_demo include/debug.h: Use <nuttx/debug.h> in apps 2026-04-11 10:39:27 -03:00
system examples: migrate to SPDX identifier 2024-12-30 18:02:50 +08:00
tcp_ipc_client examples: migrate to SPDX identifier 2024-12-30 18:02:50 +08:00
tcp_ipc_server examples: migrate to SPDX identifier 2024-12-30 18:02:50 +08:00
tcpblaster include/debug.h: Use <nuttx/debug.h> in apps 2026-04-11 10:39:27 -03:00
tcpecho include/debug.h: Use <nuttx/debug.h> in apps 2026-04-11 10:39:27 -03:00
telnetd examples: migrate to SPDX identifier 2024-12-30 18:02:50 +08:00
termios examples: migrate to SPDX identifier 2024-12-30 18:02:50 +08:00
thttpd include/debug.h: Use <nuttx/debug.h> in apps 2026-04-11 10:39:27 -03:00
tiff examples: migrate to SPDX identifier 2024-12-30 18:02:50 +08:00
timer examples: migrate to SPDX identifier 2024-12-30 18:02:50 +08:00
timer_gpio examples: migrate to SPDX identifier 2024-12-30 18:02:50 +08:00
tlpi examples: migrate to SPDX identifier 2024-12-30 18:02:50 +08:00
tmp112 examples/tmp112: Add new example for TMP112 temperature sensor 2025-08-19 14:27:45 +08:00
touchscreen include/debug.h: Use <nuttx/debug.h> in apps 2026-04-11 10:39:27 -03:00
udgram examples: migrate to SPDX identifier 2024-12-30 18:02:50 +08:00
udp include/debug.h: Use <nuttx/debug.h> in apps 2026-04-11 10:39:27 -03:00
udpblaster include/debug.h: Use <nuttx/debug.h> in apps 2026-04-11 10:39:27 -03:00
uid style: Fix coding style violations in nuttx-apps 2026-01-12 00:54:48 +08:00
unionfs examples: Add depends to different test cases 2025-03-06 09:34:24 +01:00
usbserial include/debug.h: Use <nuttx/debug.h> in apps 2026-04-11 10:39:27 -03:00
userfs examples: Add depends to different test cases 2025-03-06 09:34:24 +01:00
usrsocktest include/debug.h: Use <nuttx/debug.h> in apps 2026-04-11 10:39:27 -03:00
ustream examples: migrate to SPDX identifier 2024-12-30 18:02:50 +08:00
uvc_cam examples/uvc_cam: add UVC camera streaming app 2026-03-30 14:52:06 +08:00
veml6070 examples: migrate to SPDX identifier 2024-12-30 18:02:50 +08:00
wamr_module examples: migrate to SPDX identifier 2024-12-30 18:02:50 +08:00
watchdog !apps: drop redundant casts on tv_sec/tv_nsec and fix printf formats 2026-05-22 13:38:25 +08:00
watched examples: migrate to SPDX identifier 2024-12-30 18:02:50 +08:00
watcher include/debug.h: Use <nuttx/debug.h> in apps 2026-04-11 10:39:27 -03:00
webserver include/debug.h: Use <nuttx/debug.h> in apps 2026-04-11 10:39:27 -03:00
wget examples: migrate to SPDX identifier 2024-12-30 18:02:50 +08:00
wgetjson include/debug.h: Use <nuttx/debug.h> in apps 2026-04-11 10:39:27 -03:00
wiegand examples: migrate to SPDX identifier 2024-12-30 18:02:50 +08:00
ws2812 include/debug.h: Use <nuttx/debug.h> in apps 2026-04-11 10:39:27 -03:00
ws2812esp32rmt include/debug.h: Use <nuttx/debug.h> in apps 2026-04-11 10:39:27 -03:00
xbc_test examples: Add depends on 2025-01-03 21:28:20 +08:00
xedge_demo signals: fix build and runtime issues when signals all isabled 2026-01-19 22:55:19 +08:00
xmlrpc include/debug.h: Use <nuttx/debug.h> in apps 2026-04-11 10:39:27 -03:00
zerocross include/debug.h: Use <nuttx/debug.h> in apps 2026-04-11 10:39:27 -03:00
.gitignore Remove extra whitespace from files (#43) 2020-01-31 08:29:24 -06:00
CMakeLists.txt examples: migrate to SPDX identifier 2024-12-30 18:02:50 +08:00
Make.defs examples: migrate to SPDX identifier 2024-12-30 18:02:50 +08:00
Makefile examples: migrate to SPDX identifier 2024-12-30 18:02:50 +08:00