Hi, Dave
Those 4 "C" PIC compilers have really really nice advanced config Wizards ... BTW ... I forgave CodeWarrior " Processor Expert " for Moto ... euhhh Freescale processors.
May be CCS is the " Weakest " of all ( but one can add custom peripheral drivers ... shhhht ! ) ...and it's not so bad !!!
WIZ-C is really astonishing ...
Alain
************************************************** ***********************
Why insist on using 32 Bits when you're not even able to deal with the first 8 ones ??? ehhhhhh ...
************************************************** ***********************
IF there is the word "Problem" in your question ...
certainly the answer is " RTFM " or " RTFDataSheet " !!!
*****************************************
Alain,
Do any of them save the configs to code or do they modify the hex at program time?
Dave
Always wear safety glasses while programming.
Dave,
I don't know about the different software packages that Alain is talking about. But, in case that you might want to know the MELAB programmer software modifies the code at programming time. It does not include the PIC configs in the code that you are writting.
I downloaded the MPLAB C18 demo version and I will be playing with it pretty soon. I will let you if this "C" software has any tools to help you set the PIC configs.
Robert
"No one is completely worthless. They can always serve as a bad example."
Anonymous
************************************************** ***********************
Why insist on using 32 Bits when you're not even able to deal with the first 8 ones ??? ehhhhhh ...
************************************************** ***********************
IF there is the word "Problem" in your question ...
certainly the answer is " RTFM " or " RTFDataSheet " !!!
*****************************************
A very small start.
http://wiz.mackrackit.cambs.net/
I will post a project log and any code used at the above address if anyone want to work on it.
If you have suggestion or code lets play. I will work on it as time permits.
Dave
Always wear safety glasses while programming.
Dave, you are awesome! I see you must be working from an older copy of mplab? I had to update in order to have support for 16f1946. If you want, I can send you my *.inc files.
-Bert
The glass is not half full or half empty, Its twice as big as needed for the job!
http://foamcasualty.com/ - Warbird R/C scratch building with foam!
Ioannis sent the incs from version 8.5 .
I just have not moved them into the project directory yet, ooppss.
Thanks for the reminder.
Dave
Always wear safety glasses while programming.
-Bert
The glass is not half full or half empty, Its twice as big as needed for the job!
http://foamcasualty.com/ - Warbird R/C scratch building with foam!
Well... That is all there is at the moment
The .py that the HTML button page triggers is in red on the first page. The HTML with the button sends info to the .py then the .py produces a web page with the results.
The HTML part that gets it going
form action="/cgi-bin/ChipDrop.py" method="post" target="_blank">
select name="ChipSel">
--SNIP--
Then the Python code picks it up here
# Get data from fields
if form.getvalue('ChipSel'):
subject = form.getvalue('ChipSel')
else:
subject = "Not entered"
So all I have is the HTML and one py script to display the config options.
BTW.
I used this to help generate the HTML. No way I typed all of that..
Code:#!/usr/bin/python import os import re import string path="fileS" # insert the path to the directory of interest dirList=os.listdir(path) for fname in dirList: str = fname tx = str.strip('.INC'); sep = '' list = ['<option value="fileS/',str,'">',tx,'</option>'] print sep.join(list)
Dave
Always wear safety glasses while programming.
Bookmarks