nuttx
nuttx copied to clipboard
Apache NuttX is a mature, real-time embedded operating system (RTOS)
Hello world :-) I have tried to build the `sim:nxwm` example, but got this on FreeBSD: ``` ./sim/posix/sim_x11framebuffer.c:29:10: fatal error: 'X11/Xlib.h' file not found #include ^~~~~~~~~~~~ 1 error generated. ```...
Hello, I am trying to run a startup script from a SD Card. I have followed the instructions for enabling the startup and everything works in principle however sometimes it...
Since RISCV spec allows WFI to be implemented as a NOP, shouldn't asm("WFI"); be in a while loop, as is commonly done? https://github.com/apache/nuttx/blob/master/arch/risc-v/src/common/riscv_cpustart.c#L78 ``` void riscv_cpu_boot(int cpu) { .... /*...
## Summary - can: Remove CANIOC_XXX macro from include/nuttx/can.h - can: Add g_ prefix to can_dlc_to_len and len_to_can_dlc - can: Merge cd_error and rx_overflow into rx_error ## Impact can driver...
Can we expect the introduction of NuttX on NUVOTON MA35H0, MA35D1 processors?
I'm following this tutorial https://www.youtube.com/watch?v=8noH8v7xNgs But ping if failing: ``` nsh> ping 10.0.0.1 ERROR: socket() failed: 93 ```
When I was debugging the STM32F405 USB function, I encountered a crash. It seemed that the data structure was damaged. The cause of this problem is that the **interrupt was...
## Summary 1. synchronize settings of CMake Toolchain file 2. synchronize the settings of sim redefine symbols ## Impact link to: https://github.com/apache/nuttx/issues/12127 ## Testing CI build
When i use cmake to build sim:libcxxtest, it display undefined reference to `NXpthread_setspecific'
when i use cmake -B build -DBOARD_CONFIG=sim:libcxxtest it can not compile  but when i use make to build sim libcxxtest, it is running properly what can i do to...
Our coding style guide shows function header like this: ``` /**************************************************************************** * Name: * * Description: * Description of the operation of the function. * * Input Parameters: * A...