nuttx
nuttx copied to clipboard
Apache NuttX is a mature, real-time embedded operating system (RTOS)
## Summary syslog/ramlog: add support of ramlog flush worker 1. add `RAMLOG_FLUSH` options to support flush ramlog buffer to `ARCH_LOWPUTC` device 2. add `RAMLOG_FLUSH_WORKER` to support background ramlog flush from...
### Description / Steps to reproduce the issue I cannot build the telnet configuration for the Pi Pico W following the [documentation from the NuttX website](https://nuttx.apache.org/docs/latest/platforms/arm/rp2040/boards/raspberrypi-pico-w/index.html#readme-txt). When I attempt to...
## Summary syslog/ramlog: remove magic flag 1. remove magic flag 2. move g_sysdev to bss 3. clear ramlog buffer only if in custom section Signed-off-by: chao an ## Impact N/A...
## Summary add config ARMV7M_SYSTICK_IRQ_THREAD,we can use irq_thread attach systick interrupt. ## Impact armv7m systick. ## Testing chip:cortexM7
### Description I'm trying to run a demo of **MCUboot** and **NuttX** on my **ESP32-C6**. By configuring the project with _esp32c6-devkitc:mcuboot_nsh_, I can compile and burn the firmware on the...
## Summary Fix FPU and exception handling for ARM64 by: - Saving and restoring FPU state on every exception / interrupt - Switching to the interrupt stack, when executing the...
## Summary 1. Synchronize CMake's SIM arch Toolchain file and Makefile versions to be consistent ## Impact Synchronous build system, not a new feature ## Testing All sim build
### Description Hello everyone, We are using a STM32H7 based board and recently updated our NuttX version from 9.1.0 to the 12.6.0-RC1 tag. We are using the TCP/IP **unbuffered** networking...
## Summary currently, nuttx implements readv/writev on the top of read/write. while it might work for the simplest cases, it's broken by design. for example, it's impossible to make it...
## Summary 1. This is a new function that implements the method of printing the serialized data of the structure in a similar way to %pV %pS. 2. Add LIBC_PRINT_EXTENSION...