mirror of
https://github.com/davidgiven/fluxengine.git
synced 2025-10-31 11:17:01 -07:00
Add support for the interfacing to an Apple Disk ][
Some folks may want to use interfaces besides PC/Shugart ones. Together with https://github.com/adafruit/Adafruit_Floppy/pull/15 and a hand wired board I'm able to read flux from an Apple Disk ][
This commit is contained in:
@@ -75,9 +75,10 @@ extern Bytes stripPartialRotation(const Bytes& fldata);
|
||||
/*
|
||||
* CMD_SET_BUS CODES
|
||||
*/
|
||||
#define BUS_NONE 0
|
||||
#define BUS_IBMPC 1
|
||||
#define BUS_SHUGART 2
|
||||
#define BUS_NONE 0
|
||||
#define BUS_IBMPC 1
|
||||
#define BUS_SHUGART 2
|
||||
#define BUS_APPLE2 3
|
||||
|
||||
|
||||
/*
|
||||
|
||||
@@ -3,7 +3,7 @@ syntax = "proto2";
|
||||
import "lib/common.proto";
|
||||
|
||||
message GreaseWeazleProto {
|
||||
enum BusType {
|
||||
enum BusType { /* note that these must match CMD_SET_BUS codes */
|
||||
BUSTYPE_INVALID = 0;
|
||||
IBMPC = 1;
|
||||
SHUGART = 2;
|
||||
|
||||
Reference in New Issue
Block a user