Help!!Newbie with Propeller Demo Board Kit
ElectriKC
Posts: 13
In the book Programming and Customizing the Multicore Propeller Microcontroller, chapter 3 section Development with the Parallax Serial Terminal, I believe I need to download PST Debug LITE..but when I go to download it there is a message saying C:user/my name......PST Debug LITE does not exist..and on the instructions of the given code Test Time Counting.spin, under PUB Go, it has debug. Start(debug#COMMA_DELIMITED) and when I press f10 to load it there is a message that says needs a constant name needed or something..but the book says nothing of this problem..Please help if you can..This is the only code that I cannot press f10 to load..all the others did it fine until this one..I think it has to do with not being able to download the PST Debug LITE file..Thank You for your help and patience, I am new to programming..This is my first time with any programming and I got most of the stuff in the book until this point..This is also my first post so Thanks again!!
Comments
welcome to the propeller-forum!
The members in this forum are really friendly and patient even with the
most basic questions. I often think the propeller-chip is a microcontroller
that is attractive to people that are very open-minded and therefore patient.
Please do the "medium-neewbees" a big favor and ask really basic questions that can be answered by "medium-newbees".
If you look through the threads of this forum you will find basic questions
and high advanced questions and threads. So this is a place for everyone.
From beginners learning how to code for the first time up to assembler-tweaking-freakin-freaks
doing things that make the brains of other assembler-tweaking-freaks SPIN in twisted-circles ;-)
Parallax and the members of this forum always like to improve the
"feel-at-home-factor" as much as possible.
You wil NEVER get a "RTFM" (read that f... manual) as an answer.
You will get good will and direct help or a detailed hints WHERE in the manual more detailed information can be found.
So just start write a 10-20 lines description what you want to do and how far you did come and a question.
In most cases it is good to add your code or datasheets as attachment.
If others can see that you have tried even a little bit on your own and now have questions you will get answers.
Start using the mentioned sources and come back as soon as you have a question.
back to your question: Debug-Lite belongs to the PE-Kit Lab
Everything about the PE-Kit Lab can be found here
http://forums.parallax.com/showthread.php?89958-Propeller-Education-Kit-Labs-Tools-and-Applications&p=617192#post617192
I also attached the Debug-Lite files to this posting.
keep the questions coming
best regards
Stefan
The Spin file corresponding to "debug" object needs to be in the same folder as the program you're working on. Just having the child object open in the Propeller tool isn't enough for the compiler to find it (though it claims it can).
please make a zip-archive of your code and attach it to a posting.
in the propeller-tool click in the main menu "file-archive-project...
this will create a zip-file with all the code that gets compiled
For attaching the zipfile to a posting use the "Go Advanced" button in the right bottom of the reply-text-inputfield.
best regards
Stefan
Is the debug object the one Stephan attached to his post above?
It's odd that your Propeller is found with F7 but not F11 but that's happened to me several times. It's usually just a temporary problem whenever I've had it.
Are you using the Propeller Demo Board? If not, which board?
Edit: I just saw Stefan's post. You can't archive a project if it doesn't compile. You'll need to either make your own zip file or just post each file separately.
Looks like the constant names have changed in the DEBUG-LITE object since the book was written.
The constant name that was COMMA_DELIMITED is now just COMMAS. So you need to change the name to "debug#COMMAS" where you get the error.
Andy
If you have the old object in the same directory as the example spin code then this object is used, also if you have a newer version elsewhere.
Andy
This has got to be frustrating. There are more than one object with similar names. Depending on which version you're using you many need to add a second parameter to the start call.
Try the following.
It looks like the turorial code needs to be updated and cleaned up.
Andy