-
Notifications
You must be signed in to change notification settings - Fork 39
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Can't communicate with Memcarduino running on Raspberry PI pico #31
Comments
``I have tried this with two different picos and two different memory card ports and got the same result. I have tested continuity and different memory cards. I have successfully read memory cards on the same computer when using an esp32. If I use the ESP32 without a memory card plugged in i get this:
Which is different to what I get when i tried it with the Pico |
Can you verify that the serial communication is working properly on pico? Try running some serial port examples from arduino. |
Hi I tried AnalogInOutSerial From the arduino examples and they all worked. |
Hello, |
OK, this is weird. Apparently when setting up the ack interrupt on Raspberry Pi Pico I have to tell it again that it's a input with pullup. That would't be such an issue since code should fallback to ack-less mode but it looks like I also didn't give it enough time So long story short, one glitch and one oversight and Rpi Pico doesn't work now... Not to worry though, the fix is simple. Place "pinMode(AckPin, INPUT_PULLUP);" right after "attachInterrupt(digitalPinToInterrupt(AckPin), ACK, RISING);" and it should all work. I'll make an update ASAP. Sorry for the inconvenience guys. Edit: Update is live. |
I am struggling to get a connection to the raspberry PI pico working. It also doesn't work in Memcardrex on windows. I have no trouble programming the Pico over the serial port in arduino
The text was updated successfully, but these errors were encountered: