Society of Robots - Robot Forum

Software => Software => Topic started by: nda2230 on December 28, 2008, 06:50:40 PM

Title: AVR Studio 4 Problem
Post by: nda2230 on December 28, 2008, 06:50:40 PM
I get this problem with AVR Studio 4. It locks up and won't even close. I have uninstalled it and installed it again and it still does that. Also it gets the MFC error. I have gotten the latest version of AVR Studio 4 and it still does that.  ??? >:(

Note: I am running Windows Vista, is that why it's messing up.

Feedback appreciated.
Title: AVR Studio 4 Problem
Post by: nda2230 on December 28, 2008, 06:52:38 PM
Is there another program to convert .hex files to .c files!!
Title: Re: AVR Studio 4 Problem
Post by: cosminprund on December 29, 2008, 05:46:26 AM
I doubt anyone went through the trouble of making an C decompiler. You might have allot more luck finding and disassembler (that takes the HEX files and turns it into an ASM file). Writing an disassembler for a Harvard architecture would be very easy because there's no confusion betwen data and code but then again it's a bit of work.

Try googling for "AVR disassembler" and see where it gets you.
Title: Re: AVR Studio 4 Problem
Post by: nda2230 on December 29, 2008, 08:59:50 AM
Would the vAVRdisasm program work with the $50 robot
Title: Re: AVR Studio 4 Problem
Post by: nda2230 on December 29, 2008, 10:36:19 PM
I loaded the software to my Windows XP machine and it worked fine. Windows Vista is not the OS to be using with this software.



Thanks anyway!

Sent from my iPhone
Title: Re: AVR Studio 4 Problem
Post by: Admin on January 09, 2009, 12:31:17 PM
Quote
Is there another program to convert .hex files to .c files!!
Quote
I doubt anyone went through the trouble of making an C decompiler.
I believe he meant to say '.c files to .x files!!' :P

You actually don't need AVR Studio at all to use AVRs. Look at WinAVR. You can use gcc as a command line compiler, and AVR Dude to upload your code. You'll have to google up some tutorials.