Re: Article: Auto Flash and Test NuttX on RISC-V BL602

2022-01-24 Thread Tomasz CEDRO
On Tue, Jan 25, 2022 at 12:30 AM Lee, Lup Yuen wrote: > This article explains how I created a Linux script to flash and test NuttX > automatically on the BL602 RISC-V SoC... > https://lupyuen.github.io/articles/auto > Lup CONGRATZ! OPEN SOURCE RISC-V IS THE FUTURE! =) -- CeDeROM, SQ7MHZ, http:/

Article: Auto Flash and Test NuttX on RISC-V BL602

2022-01-24 Thread Lee, Lup Yuen
This article explains how I created a Linux script to flash and test NuttX automatically on the BL602 RISC-V SoC... https://lupyuen.github.io/articles/auto Lup

Re: SD Card in Simulation

2022-01-24 Thread Sebastien Lorquet
Hi The closest way to achieve this, eg if you want to exercise the SD drivers, would be to simulate a SPI/SD device that the main SD driver could talk to. The simulated SPI or SD would have to get,recognize and execute SD commands, and it would get its storage from the host disk or memory.

Re: SD Card in Simulation

2022-01-24 Thread Xiang Xiao
You can try HostFS. On Mon, Jan 24, 2022 at 7:07 PM Fotis Panagiotopoulos wrote: > Hello, > > I am working on a system that uses an SD card to read various files. > I am also using the simulator for testing this firmware. > > I would like to test the parts of the system that read and parse these

Re: SD Card in Simulation

2022-01-24 Thread Peter Kalbus
Hi Fotis, you use the ROMFS feature to include files directly on the image … it depends on some external tool called ‚genromfs‘ You may check for ROMFS and ROMFSETC in the configuration and documentation. /Piet > Am 24.01.2022 um 12:07 schrieb Fotis Panagiotopoulos : > > Hello, > > I am wo

SD Card in Simulation

2022-01-24 Thread Fotis Panagiotopoulos
Hello, I am working on a system that uses an SD card to read various files. I am also using the simulator for testing this firmware. I would like to test the parts of the system that read and parse these files, so I need a way to simulate the SD card. Is there any way to achieve this? Ideally,