dwalton65

Results 3 issues of dwalton65

The returned frame size was being compared with RX_BUFFER_LEN, when it should have been compared with RX_BUF_LEN. RX_BUF_LEN = 24 RX_BUFFER_LEN = 1024 This was the cause of occasional crashes...

I have added a 8 bit wishbone peripheral as follows: ``` class SpiModule(Module): def __init__(self, platform, spi_miso, spi_mosi, spi_ss_n, spi_sclk): self.bus = bus = wishbone.Interface(data_width=8, adr_width=8) . . . class...

question
gateware-bug
bug?

If I perform the following steps, everything builds ok using trellis, and I get the BIOS prompt. ``` cd litex-boards/litex_boards/targets ./radiona_ulx3s.py --build --device=LFE5U-85F --cpu-type=vexriscv --cpu-variant=minimal --csr-csv=build/csr.csv fujprog build/radiona_ulx3s/gateware/radiona_ulx3s.bit litex_term /dev/ttyUSB0...