Re: ESP32S?

2021-04-02 Thread Marco
first. The vl42 API should be a good starting point. But I can't help out here very much because of the lack of camera hardware. I only have an USB camera that supports uvc (usb video class) what I think should also be a thing that nuttx should support. Unfortunately, I'm not a USB expe

Re: ESP32S?

2021-04-03 Thread Marco
first. The vl42 API should be a good starting point. But I can't help out here very much because of the lack of camera hardware. I only have an USB camera that supports uvc (usb video class) what I think should also be a thing that nuttx should support. Unfortunately, I'm not a USB expe

Testmail

2021-04-03 Thread Marco

Re: Testmail

2021-04-03 Thread Marco
Am Sa., 3. Apr. 2021 um 10:06 Uhr schrieb Marco : Sorry for spamming here, but showing my last reply in the mailing list was so slowly. It took about 30 minutes or more. Is this the default case? Marco >

Re: ESP32S?

2021-04-03 Thread Marco
ith a less featured or just simpler interface. But this is just my personal opinion. Marco Am Sa., 3. Apr. 2021 um 13:40 Uhr schrieb Matias N. : > My idea was to do something similar to the framebuffer device, using map > to access image data and ioctl's to control camera parameters

Re: ESP32S?

2021-04-03 Thread Marco
Am Sa., 3. Apr. 2021 um 13:40 Uhr schrieb Matias N. : > Do you see a need for something more? Not sure what other aspects of video > handling require a specific solution. When talking about cameras you also need to specify the camera output format. This is mostly a raw format YUV for mipi cameras

1wire subsystem

2021-04-03 Thread Marco
uttx/1wire/1wire_master.h I would expect something similar to the i2c interface. Currently, I can't use the logic because of restricted access to that interface from the sensors subdirectory. Marco

Re: 1wire subsystem

2021-04-03 Thread Marco
us it is a quasi-standard. ;) At least I didn't found 1wire chips from other vendors. Marco Am Sa., 3. Apr. 2021 um 15:47 Uhr schrieb Alan Carvalho de Assis < acas...@gmail.com>: > Hi Marco, > > This code was submitted by Juha, maybe he has some rational why it was >

Re: 1wire subsystem

2021-04-06 Thread Marco
t;: > Hi, > > Adding that subsystem was my first experience with 1-wire. I don't like > tinkering with buses like I2C/SPI/1-wire, especially about 1-wire I have > forgotten nearly all details already. Feel free to re-organize this any way > you like. > > -Juha >

ZeroMQ

2023-02-03 Thread Marco Casaroli
Hello, I've been experimenting to build ZeroMQ work with NuttX and I wanted to share my results so far. TLDR: it works Please, understand that I am very new to NuttX so please tell me with any conceptual errors I might be facing! https://github.com/casaroli/incubator-nuttx/tree/zeromq I think

Re: ZeroMQ

2023-02-06 Thread Marco Casaroli
tex-M3/4 > class) system. > > > > Just my $0.025, I hope it’s helpful. > > > > Cheers, > > -david > > > > > > > >> On Feb 3, 2023, at 2:24 AM, Xiang Xiao > wrote: > >> > >> On Fri, Feb 3, 2023 at 4:31 PM Mar

Re: Build system is broken

2023-03-07 Thread Marco Casaroli
Try make V=1 On Tue, 7 Mar 2023 at 09:18, Sebastien Lorquet wrote: > Hi, > > This morning I updated my working copy, ran git pull origin master and > rebuilt my OS > > Now when I run make I get no output. But the cpu fan works. > > Only the last line of the console shows text, there is no log m

RP2350 port

2024-08-26 Thread Marco Casaroli
Hello, I got my hands on some Raspberry Pi Pico 2 boards and I can finally run NuttX on them. It took some work, since the M33 core is a bit different than the M0 on the old RP2040. It is working now (nsh and usbnsh configs at least) and even ostest is passing. For my initial PoC, I just edited

RP2350 port part 2

2024-08-29 Thread Marco Casaroli
Hello again, I have followed Greg's advice and put the files in arch/arm/rp23xx I have some more questions for you. I start a new email thread to not generate noise in the previous discussion. 1. The RP port needs some hardware (include) files from pico-sdk. Should I: a. put the instructions ho

Re: RP2350 port part 2

2024-08-29 Thread Marco Casaroli
On Thu, Aug 29, 2024 at 11:34 AM wrote: > On 2024-08-29 11:17:06, Marco Casaroli wrote: > > I have some more questions for you. I start a new email thread to not > > generate noise in the previous discussion. > > > > 1. The RP port needs some hardware (include) file

Re: NuttX "gadget": resolve its host name via CDC/NCM connection

2024-10-09 Thread Marco Casaroli
Why not just write a DNS-SD daemon that will send some URP packets and then the peers can resolve the hostname? http://www.dns-sd.org On Wed, 9 Oct 2024 at 02:04, Tim Hardisty wrote: > Not a NuttX question, as such, more a basic embedded device networking > question. But you’re all so helpful,

POSIX environ variable

2024-11-05 Thread Marco Casaroli
ne environ like POSIX specifies, so that we can handle these apps without modifications? Thank you very much. BR // Marco Casaroli [1] https://pubs.opengroup.org/onlinepubs/9699919799.2018edition/basedefs/V1_chap08.html [2] https://github.com/apache/nuttx/blob/0fad2ee73f5431cbe34cc02253909f290

Re: RP2040 multiple GPIO interrupts

2025-03-18 Thread Marco Casaroli
Hello, You can do this in software: check the line status if it is low, then you set the interrupt to rising edge and if it is high you set to falling edge, any time the interrupt happens, you carefully change to falling or rising depending on the status. On Mon, Mar 17, 2025 at 22:18 Matteo Goli