Will EMC work with any ISA card and controller box
Curious what it would take to get it running EMC2?
Please Log in or Create an account to join the conversation.
linuxcnc.org/index.php/english/component...ew&catid=30&id=14519
AFAIK you would have to write a driver for your card.
I would use the EMC LiveCD to install and not mess about with red hat.
John
Please Log in or Create an account to join the conversation.
1. Finding a Host CPU with and ISA slot that also has enough memory and performance to run Ubuntu.
Not sure what the exact limits are but I suspect than anything less than 256-512M of RAM and a 700 MHz processor will cause trouble. Its unlikely the original DOS based CPU has enough resources to run Ubuntu
2. Like John said, writing a driver for your ISA hardware. This may or may not be difficult depending on the hardware design and whether you have register level hardware documentation.
Please Log in or Create an account to join the conversation.
I think there are two problems here:
1. Finding a Host CPU with and ISA slot that also has enough memory and performance to run Ubuntu.
Not sure what the exact limits are but I suspect than anything less than 256-512M of RAM and a 700 MHz processor will cause trouble. Its unlikely the original DOS based CPU has enough resources to run Ubuntu
2. Like John said, writing a driver for your ISA hardware. This may or may not be difficult depending on the hardware design and whether you have register level hardware documentation.
Excellent and thanks! I have the first part (a host PC with sufficient hardware to function).
The second Part... how would I even begin? I'll read the link given in the above post. But as far as writing drivers, I've programmed microcontrollers and have done some other programing. I have a little bit of background. But I've never done anything with drivers.
I do have the DOS installer. I guess I could reverse engineer maybe??
Please Log in or Create an account to join the conversation.
Without this there's not much hope unless you like reverse engineering...
There is a skeleton driver (hal_skeleton.c in /src/hal/drivers) that covers the basics of whats required.
Also take a look at the other driver sources in /src/hal/drivers, for example the hal_stg.c code is for a ISA servo interface card with digital and analog I/O and encoder counters.
Please Log in or Create an account to join the conversation.