-
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
Writing data using 0.6 firmware stalls, while switched back to 0.4 works on my Arduino Pro Mini 3.3V #32
Comments
Try to use 0.6 sketch but change line: SPI.beginTransaction(SPISettings(125000, LSBFIRST, SPI_MODE3)); to That will bump the SPI speed to 250khz, as per standard. Maybe the card is picky about the speed, some are. I changed it because there should be 1K pullups on each data line, same as on a real PSX but due to sake of simplicity |
Hi sorry for the late reply. I just got more spare official PS1 memory cards to test with. Unfortunately setting to 250k doesn't work for me on those genuine cards. Do you think install the pullups will help? Do you have more details on which data lines and what voltage they needed to be pulled up? |
Installing pull-ups should help, yes. Put 1K external pull-ups to 3.3V on Cmd, Data, Att, Clk and Ack lines. What I find strange is that you said 0.4 works. If all else fails and 0.4 is working properly don't worry, If you change Serial.begin(38400) to Serial.begin(115200) you will get all the benefit of 0.6 on 0.4 with working writes. |
Setup:
With this setup, the memcarduino with latest 0.6 firmware can read data using MemorycardRex without problem. However when it comes to format and write data, I cannot get it work, it always stuck in GUI. Using memocarduino.py has the same issue.
I noticed there was a 328P support break after merging in mega2560 support so I decided to switch to commit
c8ca8b517cbc678d27727cf46a8524e1a6c97a19
to give it a go. And then writing operation works without issue, although I have to set the baudrate to 38400 legacy mode in MemorycardRex.I initially though it could be the 3.3V power provided by my mini FTDI board isn't enough so I soldered external 3.3V to provide additional power, but that has no use helping firmware 0.6 to write data in my case.
The text was updated successfully, but these errors were encountered: