Coder Social home page Coder Social logo

Comments (15)

gianlucarenzi avatar gianlucarenzi commented on June 18, 2024 1

from arduinofloppydiskreader.

RobSmithDev avatar RobSmithDev commented on June 18, 2024

from arduinofloppydiskreader.

maps82 avatar maps82 commented on June 18, 2024

Thanks for your response! Can you recommend a specific FTDI board that works?

from arduinofloppydiskreader.

RobSmithDev avatar RobSmithDev commented on June 18, 2024

from arduinofloppydiskreader.

maps82 avatar maps82 commented on June 18, 2024

I ordered a third FTDI board on eBay, which looks different than the ones I have. Will keep you updated.

from arduinofloppydiskreader.

maps82 avatar maps82 commented on June 18, 2024

I got the new FTDI board and although it looks exactly as my previous one I successfully wrote a Workbench disk today which could be booted by the Amiga :)

Unfortunately verifying doesn't work (I have to disable it) and I have no success with Pinball Dreams and another Demo.

When it comes to writing in Diagonistics mode I don't get anymore the message:

An unknown response was received from the Arduino while executing the WriteTrack command

but

Writing and Verifying Track 41 (Upper Side).
DIAGNOSTICS FAILED: Unable to detect written track. This could be for one of the following reasons:...

EDIT: Writing X-Copy also works. Is every disk supposed to work (Games, Demos, NDOS...) or only Amiga Dos formatted ones?

from arduinofloppydiskreader.

RobSmithDev avatar RobSmithDev commented on June 18, 2024

from arduinofloppydiskreader.

jtsiomb avatar jtsiomb commented on June 18, 2024

Is every disk supposed to work (Games, Demos, NDOS...) or only Amiga Dos formatted ones?

Every disk is supposed to work. I've written (with my AVR version of Rob's design, and my port of his firmware to straight AVR) every kind of disk. Including multiple demos and games. In fact this is my primary means of writting amiga disks now, since it's much easier than writing with the amiga itself through the serial port.

Since your errors seem to be intermittent, I would suggest trying to wire up a more permanent version on perfboard, soldered together, instead of the breadboard you're showing in the pictures. Maybe some connection is dodgy. An alternative suggestion is to try making my version on perfboard or PCB. I include a schematic which you could use for wiring it up manually on a perfboard, and an untested PCB design derived from it (untested because I made mine before making the PCB design, and I never bothered to make another one). Unfortunately this would require soldering an FTDI chip, which is never fun, but you could find a through-hole breakout instead. https://github.com/jtsiomb/usbamigafloppy

from arduinofloppydiskreader.

gianlucarenzi avatar gianlucarenzi commented on June 18, 2024

My board custom made is working good. Right now I've done 10 PCBs and only two are populated with John (jtsiomb) AVR firmware slightly modified. In the new year I hope to get the Qt based Posix software ready to roll! Have a nice holidays and a very happy new year!

from arduinofloppydiskreader.

codmpm avatar codmpm commented on June 18, 2024

@gianlucarenzi would you mind open-source the pcb layout?

from arduinofloppydiskreader.

prickle avatar prickle commented on June 18, 2024

I had this issue too, but with CH340G as well as FTDI. After fiddling with hardware for days I seem to have fixed it by changing the flow control code in CHECK_SERIAL().

#define CHECK_SERIAL()          if (UCSR0A & ( 1 << RXC0 )) {                      \
                                    SERIAL_BUFFER[serialWritePos++] = UDR0;        \
                                    serialBytesInUse++;                            \
                                }                                                  \
                                if (serialBytesInUse<SERIAL_BUFFER_START)          \
                                    PIN_CTS_PORT &= (~PIN_CTS_MASK);               \
                                else PIN_CTS_PORT|=PIN_CTS_MASK;                   \
                                

from arduinofloppydiskreader.

RobSmithDev avatar RobSmithDev commented on June 18, 2024

from arduinofloppydiskreader.

prickle avatar prickle commented on June 18, 2024

Just to confirm, with the bugfix given above I have successfully read and written disks that can be read by a real Amiga. Thanks Rob, this is a great project! Here's my finished unit. This drive seems to run fine from USB power only.
20201124_144349

from arduinofloppydiskreader.

RobSmithDev avatar RobSmithDev commented on June 18, 2024

from arduinofloppydiskreader.

RobSmithDev avatar RobSmithDev commented on June 18, 2024

Just testing this CHECK_SERIAL change out with my "working" drive. All looks good. I was a little concerned that it might mean data might get written to fast, but I guess it seems fine. Just written and verified several disks with no issue.

It'll be included in the next release

from arduinofloppydiskreader.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.