PDA

View Full Version : REN-C PIC HEX file



sparky588
11-07-2010, 05:15 PM
Dose anyone have the REN-C HEX file. i tried to make it but it dosent operate. I'm new at the RENARD boards and am tring to get my OLSEN
595 to dim. Right now its not doing anything

Thanks

P.S. dose it operate at the 56000 baud rate to?

barnettd
11-07-2010, 05:46 PM
Go to :

doityourselfchristmas.com/wiki page

click on Electronics Hardware

then to the Renard link

then the Renard-595 converter link

then find the link to take you to the Firmware.

There is lots of information on what you want to do with the 595 converter there....

Hope this helps

RichF
11-07-2010, 05:51 PM
YEs runs at 57600

If you need the firmware let me know I have both the published and a beta version in HEX format

sparky588
11-08-2010, 10:28 PM
I found my problem. i forgot to install the J1 jumper on the Olsen595 board. all works now

DaveJZ
02-25-2011, 11:54 PM
I know this is bringing an old post alive but didn't want to start a new one since this one was there.

I'm trying to build a .Hex for the REN C but cannot get it to build from the wiki asm. Looking for help. This is what I get when I try to build

Clean: Deleting intermediary and output files.
Clean: Done.
Executing: "C:\Program Files\Microchip\MPASM Suite\MPASMWIN.exe" /q /p16F627A "Renard-595-192-20090505a.asm" /l"Renard-595-192-20090505a.lst" /e"Renard-595-192-20090505a.err" /o"Renard-595-192-20090505a.o"
Error[113] C:\USERS\ZYLA FAMILY\DESKTOP\RENARD-595-192-20090505A.ASM 90 : Symbol not previously defined (_DATA_CP_OFF)
Skipping link step. Not all sources built successfully.


If anyone can help me that would be great... Or if someone would happen to have the .hex already and could post that would be great.. Please let me know

dirknerkle
02-26-2011, 12:01 AM
Try this one instead.

DaveJZ
02-26-2011, 12:13 AM
I'm not sure what I'm doing wrong but I'm getting the same error with that one as well Dirk. I've used MPLAB IDE project wizard as well as tried manually.. can't get it past that point. The only thing that changes is the 20090505 turns into 20090506. I've entered the pic, not sure what I'm doing wrong.

I dunno..

RavingLunatic
02-26-2011, 12:32 AM
It appears that there is something wrong with the include file or it is missing.
_DATA_CP_OFF is defined in the include file.

Check to make sure the file: p16f627a.inc is MPASM Suite directory

What version of MPLAB IDE are you using?

DaveJZ
02-26-2011, 01:01 AM
I'm using v8.63

I'll be honest.. not sure I know what I'm looking for.. this I'm absolutly lost on

RavingLunatic
02-26-2011, 01:31 AM
OK, I installed that version and the p16f627a.inc (released with MPLAB IDE Ver. 8.63) file had that symbol defined a little different:

change _DATA_CP_OFF to DATA_CP_OFF

In case you cannot find it, the line looks like this:

__CONFIG _CP_OFF & _DATA_CP_OFF &_LVP_OFF & _BOREN_ON &_MCLRE_OFF & _PWRTE_ON & _WDT_OFF & _HS_OSC

change to:
__CONFIG _CP_OFF & DATA_CP_OFF &_LVP_OFF & _BOREN_ON &_MCLRE_OFF & _PWRTE_ON & _WDT_OFF & _HS_OSC

n8huntsman
02-26-2011, 01:40 AM
In a .asm file there is a line of code that tells the assmbler to include certain files in the compiled code. This is called the include file. It should be located in "C:\Program Files\Microchip\MPASM Suite" and is called "p16f627a.inc" Check to see if it is there. If not, or maybe it is corrupted, I have attached it. You will have to change the .zip to .inc though because this forum doesnt allow us to upload .inc files.

DaveJZ
02-26-2011, 01:52 AM
Thank you that worked.. I now have a .hex file however

RichF
02-26-2011, 09:22 AM
I sent you a copy of my Hex file

Tried to post in the files library but could not get it to post.