Skip to content

Commit

Permalink
Add X68000 preset
Browse files Browse the repository at this point in the history
  • Loading branch information
erichelgeson committed May 26, 2023
1 parent 66c1e47 commit be6d1ad
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions src/BlueSCSI_presets.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,13 @@ preset_config_t getSystemPreset(const char *presetName)
cfg.mapLunsToIDs = true;
cfg.enableParity = false;
}
else if (strequals(presetName, "X68000"))
{
cfg.selectionDelay = 0;
cfg.quirks = 0;
cfg.enableSCSI2 = 0;
cfg.maxSyncSpeed = 5;
}
else
{
log("Unknown preset name ", presetName, ", using default settings");
Expand Down

3 comments on commit be6d1ad

@ArcadeKing
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks you very much for the x68000 support! works flawlessly on the Centronics 50 Pin device. Only quirk I've noticed is if you power cycle the machine you need to also power cycle the Bluescsi v2 /Pico otherwise you get Chk.Conn. error.

@erichelgeson
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

No problem! It's from user reports like yourself we can support it because we (core dev team) don't have a x68000. If you could get a debug log of the startup, then restart of the x680000 where it gives you that error we could take a look, please open an issue with those details/file.

@ArcadeKing
Copy link

@ArcadeKing ArcadeKing commented on be6d1ad Jul 6, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I just need to enable debugging? I wasn't sure where to post my findings. I've been running it for hours with no issues. If you reset the machine via the reset button there's no problem, its only if you turn the machine on and off via the soft power on/off button or the main switch at the back of the machine.
I am currently running the Bluescsi v2 via an external psu, I don't think it would be an issue if I modded the machine to power the pico via the X68000 internal psu , that way if you power off/on the machine the pico would do the same however most people wouldn't have the know how to do such a mod. Happy to provide any information you need via the user report. (Still trying to work my way around Github)

Please sign in to comment.