ArduinoFloppyDiskReader
ArduinoFloppyDiskReader copied to clipboard
DrawBridge aka Arduino Amiga Floppy Disk Reader/Writer - Hardware and software interface for accessing Amiga disks (read/write ADF and SCP) on non-Amiga hardware
@RobSmithDev This works with 64bit manjaro linux in 64bit mode.
1. download codebase onto an ubuntu latest desktop for intel `git clone https://github.com/RobSmithDev/ArduinoFloppyDiskReader.git` 2. `cd ArduinoFloppyDiskReader/ArduinoFloppyReader/ArduinoFloppyReader` 3. `make` Returns the following output: ``` /ArduinoFloppyDiskReader/ArduinoFloppyReader/ArduinoFloppyReader$ make g++ -Wall -std=c++14 -Wno-psabi -O3...
On a 2017 13" MacBook Pro with MacOS Ventura 13.4.1 the baud rate is not set, instead the default value of 9600 baud is used. By moving the Apple specific...
Thank you for all the effort you put into this repo, it's a really great project! While trying to use it on my 2017 MacBook Pro (macOS Ventura 13.4.1), I...
when trying to use drawbridge with capsimage.so.5 on linux (gentoo linux) the programm segfaults `[195963.033547] drawbridge[1328066]: segfault at 5607833e35ef ip 00007f46bdbefbe8 sp 00007ffdd58f16b0 error 4 in libcapsimage.so.5.1[7f46bdbec000+e000] likely on CPU...
Any clue if this would work for a 5.1/4 floppy drive for the BBC Micro? I initially focused on getting the machine back up and running, since it now boots...
Add missing semicolon and add include of cstdint in lib/serialIO so it compiles on linux.
Hi, I'm working on a small utility to convert disks to ADF format and read amiga filesystem with the help of ADFlib (https://github.com/lclevy/ADFlib/tree/master) and ImGui (MinGW and Linux). Reading disk...
memcpy_s should work under linux but regardless where I've placed the needed defines the definition wasn't found.
https://github.com/RobSmithDev/ArduinoFloppyDiskReader/blob/2cbbfd1c8d9e5c3e641316a5d643b9148e592206/ArduinoFloppyReader/lib/SerialIO.cpp#L441 This should be: `m_ftdi.FT_SetUSBParameters(rxSize < 256 ? 256 : rxSize , txSize);` Or at least when not in windows. On AmigaOS4 tracks size can't be set correctly when using:...