vote up 3 vote down star

I'm working on a software project intended for recuperating old specific hardware, mostly for non-for-profit organizations and poor schools.

I need a way to simulate old hardware so I can test the application before shipping it out.

How can I do this?

flag
Can you clarify whether you want to simulate the hardware - the hardware is a black box which your software talks to, and you want to replace than black box with other software, or emulate the hardware - your software runs on your machine which acts like the emulated hardware. – Pete Kirkham Feb 23 '09 at 10:17

4 Answers

vote up 1 vote down check

I'm not sure exactly what the question is asking for. I think you are asking for a way to emulate certain HW?

If that is the case, I've used QEMU in the past, and it has worked great.

link|flag
vote up 1 vote down

Use virtual machines? Prepare the images reflecting (more or less) the state of the target machines (speed, hardware, etc). And use them for testing the deployment?

link|flag
vote up 0 vote down

You might want to check out Emulator Zone, and emulator is a good google search term you might not have tried.

link|flag
vote up 0 vote down

Well. If the old hardware is communicating via RS232, then write a class that wraps the RS232 commands and make the class inject the messages the old hardwares would respond. In your program, work against that class instead of real rs232-port and just change instance to real rs232 before shipping.

I have done this succesfully in a project and it worked out really good and its not that complicated that you can think.

link|flag

Your Answer

Get an OpenID
or
never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.