Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Problem with SPI on Pico #2613

Closed
mariusGundersen opened this issue Mar 3, 2025 · 4 comments
Closed

Problem with SPI on Pico #2613

mariusGundersen opened this issue Mar 3, 2025 · 4 comments

Comments

@mariusGundersen
Copy link
Contributor

I've found a weird issue with the SPI on the Pico (might be others too, but that's where I'm testing it). My setup is a pic together with the Adafruit eInk Feather Friend, so that I can read images from an SD card and show them on an E-ink display. This means using the SPI to read from the SD card using one chip-select pin and then writing to the e-ink display using another chip-select. I have tested and gotten both the reading from SD card and updating the e-ink display to work, but not together. The error I get is this:

Uncaught InternalError: Timeout on SPI RX

I've searched the code for the string "SPI RX" and found only one potential place it can happen:

WAIT_UNTIL(jshSPIBufHead[n]!=jshSPIBufTail[n], "SPI RX");

This happens when I try to read from the SD card after writing to the e-ink display. I'm using the chip-select to toggle which device I want to communicate with, but something still seems to go wrong. After a lot of trial and error and experimenting I found a workaround: changing from spi.write(data, cs) to spi.send(data, cs) when communicating with the e-ink display. The display has no MISO pin, so I've been using write() since there is no data coming back. But it seems like this is messing with the internal SPI state machine. The code for recreating this is fairly simple:

SPI1.setup({
    sck: B3,
    miso: B4,
    mosi: B5,
});

E.connectSDCard(SPI1, A5);
require("fs").readdirSync(''); // this works, returns a list of files

// write to SPI1 but using another chip select pin
SPI1.write(0x10, A6)

require("fs").readdirSync(''); // now it fails

// setting up the SPI and SD card again fixes the problem
SPI1.setup({
    sck: B3,
    miso: B4,
    mosi: B5,
});

E.connectSDCard(SPI1, A5);
require("fs").readdirSync(''); // this works, returns a list of files

It seems like the write code is messing up the read code, but I'm unable to debug any deeper than this.

@gfwilliams
Copy link
Member

Thanks! That's really helpful to track this down - just to check, you're on the latest 2v25 firmware? And did you check on other firmwares? (it doesn't matter if not).

@mariusGundersen
Copy link
Contributor Author

I'm fairly sure I'm on the latest, yes. I haven't tried another version

@gfwilliams
Copy link
Member

I've been able to reproduce without actually setting up an SD card on the Pico, but I'm pretty sure I found the issue.

I've put a fix in, so I think if you try a cutting edge build now it should be fixed?

@mariusGundersen
Copy link
Contributor Author

yes, works great with the latest build, thanks!

# for free to join this conversation on GitHub. Already have an account? # to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants