Re: [Article] Porting Python to NuttX

2025-01-08 Thread Victor Suarez Rovere
On Wed, Jan 8, 2025 at 8:35 AM Tiago Medicci Serrano < tiago.medi...@gmail.com> wrote: > > Python was recently ported to NuttX. I wrote about the technical details > of this work in the following article. > > This is great news! I was always interested in NuttX but now it can solve some real probl

Re: Better FPGA support on NuttX //was Re: [OT] Projects for GSoC 2024

2024-02-28 Thread Victor Suarez Rovere
none of this is arty specific. > > We are actively moving the litex support forward, with both flat and kernel > targets available and there are an expanding list of drivers for litex > peripherals. > > On Tue, 20 Feb 2024, 12:35 pm Victor Suarez Rovere, < > suarezvic...@

Re: Better FPGA support on NuttX //was Re: [OT] Projects for GSoC 2024

2024-02-20 Thread Victor Suarez Rovere
mber also seeing some FPGA board to control LEDs panel that > could be used as ordinary FPGA dev tool. But I think these boards > don't have much LE internally, right? > > Best Regards, > > Alan > > On 2/19/24, Victor Suarez Rovere wrote: > > Reference to cheap

Re: Better FPGA support on NuttX //was Re: [OT] Projects for GSoC 2024

2024-02-19 Thread Victor Suarez Rovere
Reference to cheap FPGA boards (< $20) were added to the new repo, more docs will follow there: https://github.com/cederom/nuttx-fpga So, FPGA is not strictly related to $$$

Re: [OT] Projects for GSoC 2024

2024-02-19 Thread Victor Suarez Rovere
FPGA development boards are indeed not cheap, as the chips themselves are expensive. But those of us who are in the field know some solutions. Indeed I'm working on designing a low cost FPGA board right now. Until mine is ready, a useful alternative is to reuse some mass marketed products that are

Re: [OT] Projects for GSoC 2024

2024-02-19 Thread Victor Suarez Rovere
orking windows manager with > > > > chip-mod-player running on FPGA :-) > > > > > > > > I can be mentor of that project because I would like to grow in that > > > > field too as I have some ideas to test :-) > > > > > > > > T

Re: NuttX + MicroPython + ESP32 / ESP32-C3

2024-02-10 Thread Victor Suarez Rovere
I ported Micropython to various platforms (CPU and FPGA), including peripherals like Video output, so I can help with porting to NuttX: See my developments: https://github.com/suarezvictor/micropython/tree/litex-rebase/ports/litex#readme Who else can contribute? On Fri, Feb 9, 2024 at 2:27 PM Se

Re: [OT] Projects for GSoC 2024

2024-01-27 Thread Victor Suarez Rovere
on-polarfire-soc-fpga/ > * > https://www.hackster.io/lupyuen/8-risc-v-sbc-on-a-real-time-operating-system-ox64-nuttx-474358 > * https://twitter.com/btashton/status/1243699309117235200 > > On 1/27/2024 3:58 PM, Victor Suarez Rovere wrote: > > The innovation won't be to r

Re: [OT] Projects for GSoC 2024

2024-01-27 Thread Victor Suarez Rovere
> > In the past, there was some interest in ports of NuttX to softcore's > like MicroBlaze. But there hasn't been that kind of interest in recent > times. > > This would have been an innovation a decade or so ago, but I wonder > about that now. > > > >

Re: [OT] Projects for GSoC 2024

2024-01-27 Thread Victor Suarez Rovere
uld you please send your full detailed > proposal then? :-) > > [1] https://www.youtube.com/watch?v=hn3sr3VMJQU > > -- > CeDeROM, SQ7MHZ, http://www.tomek.cedro.info > > On Sat, Jan 27, 2024 at 7:22 AM Victor Suarez Rovere > wrote: > > > > Just clarifying, the ide

Re: [OT] Projects for GSoC 2024

2024-01-26 Thread Victor Suarez Rovere
the PMC :-) > > Have a good weekend my friends :-) > Tomek > > -- > CeDeROM, SQ7MHZ, http://www.tomek.cedro.info > > On Sat, Jan 27, 2024 at 2:55 AM Victor Suarez Rovere > wrote: > > > > I can certainly port NuttX to run on some FPGA boards too > > Is any b

Re: [OT] Projects for GSoC 2024

2024-01-26 Thread Victor Suarez Rovere
I can certainly port NuttX to run on some FPGA boards too Is any board already supported? On Fri, Jan 26, 2024 at 4:40 PM Alan C. Assis wrote: > Hi Tomek, > > His toolchain is focused on FPGA, but he is interested in participating in > other projects for GSoC. > > Also we need NuttX mentors, I w

Re: running GCC

2023-04-08 Thread Victor Suarez Rovere
Do you find any clear obstacle I'd find? I ask from the perspective of people that knows NuttX (not my case). Or are that obstacles completely unknown? What related obstacles where found when trying to compiling another tool, compatible with many Unix-like targets like the ones GCC can run on? El

Re: running GCC

2023-04-08 Thread Victor Suarez Rovere
won't work since I expect C++ So what's the actual difficulty in running a program that just reads and writes files? On Sat, Apr 8, 2023 at 2:47 PM Gregory Nutt wrote: > On 4/7/2023 9:02 PM, Victor Suarez Rovere wrote: > > Hi everyone! > > Considering that NuttX is P

running GCC

2023-04-07 Thread Victor Suarez Rovere
Hi everyone! Considering that NuttX is POSIX compliant, can gcc or clang be run on NuttX?

Re: NxWidgets

2022-10-04 Thread Victor Suarez Rovere
; other cases. > > Those updates are a little awkward but on the upside guarantee > flicker-free updates. > > > On 10/4/2022 9:32 AM, Victor Suarez Rovere wrote: > > Hi Nutt thanks for the detailed description on the architecture. As far > as > > I understand, there&

Re: NxWidgets

2022-10-04 Thread Victor Suarez Rovere
framebuffers. It would > require a small effort, but it would also be possible to create a > per-Window framebuffer driver that is compatible with LVGL. Then you > could have each thread manage a different window (but not true > multi-threading in a single window). > > On 10/4/2022

Re: NxWidgets

2022-10-04 Thread Victor Suarez Rovere
Many thanks of the links related to nxwidgets. I'm aware of LVGL and other nice UI for embedded systems but I prefer a framework that would be easier to manage in a client-server fashion for a project of muy own, and nxwidgets seems easier than LVGL besides less advanced. A modernization of the dra

NxWidgets

2022-10-04 Thread Victor Suarez Rovere
Hi I'm interested on trying some UI code. NxWidgets seems quite interesting but I haven't seen any screenshot besides a terminal (that uses no widgets). Is there any more complex application por demo, or at least some screenshots? Regards, Víctor