Support for lan9354 ethernet switch

2025-06-04 Thread Luchian Mihai
Hi all, I'm working to add support for the lan9354 switch for my application. Looking at drivers/net/ only external mac devices are supported there. It won't help me, as my stm32 mcu has an eth/mac peripheral. Nuttx already offers support for mii/rmii interface, so my problem is just device initia

Re: Sv: RFC: fix race conditions in drivers/serial/serial.c

2025-06-04 Thread kr . git
Hello, based on the feedback in GitHub review, I will redo the patch differently and reduce the size of the circular buffers so the variables fit into uint8_t. To respond to xiaoxiang781216's comment about using atomic_xxx API instead the critical section - I was considering that as well but

Re: BINFS - builtin apps are 0 size

2025-06-04 Thread Gregory Nutt
I think that most built-in apps can be build as ELF modules.  If that is true, then they can be put on a ROMFS file system, mounted, and should execute. You need to do more research.  There are dozens of configuration that claim to support the configuration that you want.  Look at the defconfig

Re: SYSLOG over the network

2025-06-04 Thread Gregory Nutt
⁣Get BlueMail for Android ​ On Jun 4, 2025, 12:29 PM, at 12:29 PM, Matteo Golin wrote: >I like the idea of doing a syslogd implementation, since I agree that >it >would probably be simpler to implement in userspace. Looking even at >the >ramlog implementation, I'm not sure how using networking

Re: SYSLOG over the network

2025-06-04 Thread Matteo Golin
I like the idea of doing a syslogd implementation, since I agree that it would probably be simpler to implement in userspace. Looking even at the ramlog implementation, I'm not sure how using networking operations for something like a low-level `putc` would be achieved easily. I might read into net

Re: [Q&A] LTO Marked as "experimental"

2025-06-04 Thread Javier Alonso
Sorry for the noise, I've just seen the answer - but never reached my inbox. Thanks community, Javier Alonso Silva (he, him, his) Geotab Embedded Systems Developer | GEUR *Quickly schedule a meeting * Toll-free Visit +34 900 535 371 www.geotab.

Fwd: [lvgl/lvgl] Release v9.3.0 - Release v9.3.0

2025-06-04 Thread Tomek CEDRO
LVGL 9.3.0 is out :-) -- Forwarded message - Release v9.3.0 Repository: lvgl/lvgl · Tag: v9.3.0 · Commit: c033a98

Re: Sv: RFC: fix race conditions in drivers/serial/serial.c

2025-06-04 Thread kr . git
Hi As for your second paragraph - have a look into the avrdx directory. The first depends on if you are strictly speaking about ATmega and AT90USB or if you mean all 8-bit MCUs in the AVR architecture. If you only mean those two, then I can't really provide much input, don't have experience w

BINFS - builtin apps are 0 size

2025-06-04 Thread Tim Hardisty
If I mount binfs, all the builtin apps are listed but with 0 size, and I can't execute them from the mount location. They run fine directly from NSH. I cannot find any Kconfig magic settings that "fix" this. Has anyone got any suggestions? I need it for BINFS thttp cgi functions. Thanks!