Commit Graph

68 Commits

Author SHA1 Message Date
akuker
adda58ffd0 Fix warning 2020-08-16 19:12:08 -05:00
akuker
2fef790a7f Cleanup translation and add header 2020-08-16 19:11:07 -05:00
akuker
1cf635be02 Additional changes.... command interface works? 2020-08-16 16:20:29 -05:00
akuker
c08024dd78 Merge remote-tracking branch 'origin/large_file_breakup_part_1' into large_file_breakup 2020-08-16 13:09:27 -05:00
akuker
7700c63636 Renamed disks directory to devices, since not all of the devices are disks 2020-08-16 13:06:39 -05:00
akuker
d7059886ee Merge remote-tracking branch 'origin/large_file_breakup_part_1' into large_file_breakup 2020-08-16 13:03:36 -05:00
akuker
f6da74a9ed Additional changes 2020-08-16 12:08:37 -05:00
akuker
a619079547 Pull in only the disk/controller changes from the large_file_breakup branch 2020-08-16 11:09:22 -05:00
akuker
19a659953a Additional updates 2020-08-16 09:42:22 -05:00
Tony
537fb82059 Additional updates 2020-08-15 19:23:10 -05:00
Tony
6737ad93f3 Additional updates 2020-08-15 19:22:49 -05:00
Tony
5fb705a2d8 Additional updates 2020-08-15 19:22:14 -05:00
Tony
b6101d00ce Additional updates 2020-08-15 19:22:08 -05:00
akuker
15f36ecd30 #16 Lots more refactoring.... doesn't work anymore... work in progress 2020-08-09 20:11:52 -05:00
akuker
484030a622 #16 Reorganized files 2020-08-09 14:19:35 -05:00
akuker
baeef717c4 Print out build date of software and note that this is the 68kmla version on the startup banner 2020-08-09 14:15:47 -05:00
akuker
794d2629bc #16 Fixed makefile clean rule and added xm6.h to disk.h so that all Disk functions are included for non-bm build 2020-08-09 14:03:42 -05:00
akuker
1a64c9b5de Broke HUGE disk.cpp file into smaller class files 2020-08-09 13:58:42 -05:00
Chris Pickel
46e03a4026 Reimplement ParseArgs() with getopt()
The command-line interface is intended to be equivalent. For example,
consider this command:

    $ rascsi -ID0 zero.hda -ID1 one.hda

This is no longer two pairs (ID0, zero.hda), (ID1, one.hda), but a
sequence of commands:

* -I: next disk is SCSI (not SASI)
* -D 0: next disk is device 0
* zero.hda: set up disk
* -I: next disk is SCSI (not SASI)
* -D 1: next disk is device 1
* one.hda: set up disk

Since SCSI is [now] the default, this could equivalently be:

    $ rascsi -d 0 zero.hda -d 1 one.hda
2020-08-09 07:52:58 +01:00
Chris Pickel
8b340fde89 Split config parsing and arg parsing functions 2020-08-09 02:30:17 +01:00
akuker
e61dbdabe3 Enabled Shtudown & reboot commands 2020-08-07 17:03:47 -05:00
akuker
dfa28091e4 Added file upload functionality. Disabled some debug messages. 2020-08-07 16:59:42 -05:00
akuker
e962706d4e Merge branch 'master' of https://github.com/akuker/RASCSI 2020-08-07 14:25:20 -05:00
akuker
5a71783d33 Updated to allow command handler to run on x86 systems for development purposes. Also fixed warning about using fprintf incorrectly 2020-08-07 14:25:05 -05:00
akuker
377da587b7 Added functionality to create a new, empty hd image. 2020-08-07 12:51:33 -05:00
akuker
86bf896d66 Fixed connect_new_device function 2020-08-07 11:59:18 -05:00
akuker
c37abe3e73 Remove old files 2020-08-07 11:37:13 -05:00
akuker
c3e8204542 Started moving actions into a single php file to simplify things 2020-08-07 11:34:07 -05:00
Tony Kuker
82cc76daad Merge branch 'master' of https://github.com/akuker/RASCSI 2020-08-02 18:27:38 -05:00
akuker
a6d501b7e4 Can now add, eject and disconnect devices 2020-08-01 22:47:04 -05:00
akuker
a30889f7c1 Moved several php functions to a library that can be reused. Updated to use css for styles 2020-08-01 20:53:11 -05:00
akuker
9d94cdeec6 Updated SCSI table list to show all SCSI IDs 2020-08-01 19:22:07 -05:00
Tony Kuker
19e81178b8 Merge branch 'master' of https://github.com/akuker/RASCSI 2020-07-30 14:23:35 -05:00
akuker
66e4c91f61 Buttons are starting to do something... nothing useful... but something 2020-07-29 20:42:50 -05:00
akuker
4c02bd5a1a Fix collor when the service fails. Automatically refresh the status every 30 seconds 2020-07-26 21:06:48 -05:00
akuker
b8874d1e27 Created a frame around the rascsi interface and a status frame that will automatically update 2020-07-26 20:57:52 -05:00
akuker
9345e0dbe4 updated to work with Netscape 2020-07-26 20:27:59 -05:00
akuker
4cfd4b8afd Simple php page to check the status of the RaSCSI service 2020-07-26 20:21:50 -05:00
akuker
a482c465ad Created conceptual wireframe and generated new php file that sort-of matches the wireframe. Still a work in progress and doesn't do anything useful (yet) 2020-07-26 19:54:40 -05:00
Tony Kuker
5794e56477 Translated to Englished and fixed handling of files without an extension 2020-07-25 21:40:03 -05:00
Tony Kuker
3dc38ea959 Baseline version of index.php from https://github.com/ztto/rascsi-php 2020-07-25 21:36:35 -05:00
akuker
32af6cf169 Created a proper DEBUG build (specified using DEBUG=1). Set warnings to fatal for release builds and fixed the warnings throughout the code 2020-07-10 17:49:02 -05:00
akuker
b69d6fc409 Python script for monitoring rascsi and displaying status on a OLED display 2020-07-10 11:38:59 -05:00
akuker
74d6c5279d Python script for monitoring rascsi and displaying status on a OLED display 2020-07-10 11:38:31 -05:00
akuker
7a697309e2 Fix issue #8 - Code would return error when file was CORRECTLY opened and report success when it failed. 2020-07-09 20:20:18 -05:00
akuker
96704a002a Fix the CFlags and correct the debugger to launch the correct exe 2020-07-09 17:57:13 -05:00
akuker
c0e607eb9d Added some debug code for Issue #2. This will print out a warning when we get an unhandled mode page code, instead of crashing 2020-07-09 17:56:04 -05:00
Tony Kuker
6bdb841dfc Cleanup to merge in with main branch 2020-07-09 15:34:29 -05:00
Tony Kuker
a077a782d4 Merge branch 'master' of https://github.com/akuker/RASCSI 2020-07-09 15:19:05 -05:00
akuker
15bd9d7dd4 Ignore the binaries - don't check them into git 2020-07-09 13:38:00 -05:00