Please, don't double the spam with included replies.. If you must reply, cut off all but one or two lines of the original message. This is particularly...
15018
cosmap
Oct 1, 2003 7:28 pm
Roboteq and VIA Technologies have teamed up to build and publish a robot platform based on VIA's mini-ITX mainboard and Roboteq's AX2550 controller. Mechanical...
15019
William Cox
williamcox27606
Oct 1, 2003 8:08 pm
Jake resigned: http://www.jake.mendelssohn.name/ Let us weep :'( -William...
15020
Tom Capon
robot@...
Oct 2, 2003 12:13 am
Hi, I've been working with MPLAB MPASM for a while now, and it's worked fine. However, I downloaded some code for keyboard interfacing written for the 16F84...
15021
Scott Pierce
vasago1717
Oct 2, 2003 12:19 am
The Symbol Not Previously Defined is telling you that a register (variable) hasn't been defined before you try to use it. What exactly do the lines say which...
15022
Dafydd Walters
dafyddwalters
Oct 2, 2003 12:26 am
... This could be a case of incompatible end-of-line sequences. I've found that source code that was written on a Linux system compiles file in gpasm, but...
15023
Dafydd Walters
dafyddwalters
Oct 2, 2003 12:30 am
... Neat project. I'm using one of the VIA mini-ITX mainboards in a robot of my own, and have found it to be an excellent robot controller. The one in my Open...
15024
John Cole
johnboy1.1@...
Oct 2, 2003 4:26 am
Hello all; I have a question that will undoubtedly be easy for some of you to answer and I hope that someone does! I am programming my Mini Sumo robot which...
15025
Alan King
alantak69
Oct 2, 2003 5:40 pm
... Saw a possible application mentioned in another group that sounded excellent. Home made linear encoder, as in DRO for CNC etc. A yardstick to track on...
15026
Tom Capon
robot@...
Oct 2, 2003 11:45 pm
Actually, it gives the "symbol not previously defined" error to GOTO statement line labels that are a few (or a lot) of lines down. I'll probably end up...
15027
Scott Pierce
vasago1717
Oct 2, 2003 11:54 pm
Then the GOTO statement probably points to a label which is not defined, for example you could have a line that says: GOTO Delay; but Delay isn't defined so...
15028
Charlie Heath
charlieheath...
Oct 3, 2003 12:42 am
Hello SRS, I've been thinking of trying out the Cypress PSoC and signed up for the free seminar. Since I have to miss a day of work (which is not all bad) I'm...
15029
Ed Okerson
phoneguin
Oct 3, 2003 2:07 am
Charlie, I attended the seminar today in Sacramento. Quite a neat little chip. It is kinda like the new fangled devices showing up that have FPGA and a CPU...
15030
Larry Barello
lbarello
Oct 3, 2003 3:08 am
I attended the Seattle seminar and got the programming dongle (pod). The development software is available for download on the cypress web site. The pod is a...
15031
Bryan Andersen
bryan@...
Oct 3, 2003 4:06 am
... Actually that is one of the worst methods... Think carefully. An oscilator has a very well defined period even if it is out of sync with your MCU clock....
15032
Ali
muaest
Oct 3, 2003 7:52 am
Hi Larry Will you care to share the key for C compiler, coz its very hard to work in assembly and these days i am exploring the PSoc devices. Thanks Alot. ...
15035
Jim McBride
jymmyrig
Oct 3, 2003 3:23 pm
Make sure you don't have a case sensitive issue. In school I gave up and just coded everything in upper case to keep from getting bit. Have a look in your...
15036
Aravind Mangadu Sri
ieee1981
Oct 3, 2003 5:28 pm
Hi I am currently working on positionin my robot inside a warehouse. I was thinking of using a GPS for locating the robot....But GPS signal is not recevivable...
15037
Dan Gates
topazx2
Oct 3, 2003 5:37 pm
A list of prizes and a picture of the Awards has been posted on the RoboMaxx site for those who asked. Click on any of the contest photos from the main page...
15038
Kevin Rock
kevinrockusa
Oct 3, 2003 5:51 pm
Ali, When you attend the PSoC seminar you do not receive the key for the C compiler. What you do receive is a code signifying payment confirmation. Then you...
15039
Rich Chandler
mauser712
Oct 3, 2003 6:47 pm
I thought we had all new users moderated until they made on-topic posts.......
15040
Bryan Andersen
bryan@...
Oct 3, 2003 7:04 pm
... Found it on my third try searching at google. Google is your friend. Very very high sensitivity receivers is one method, but I can see where that will...
15041
wizard@...
Oct 3, 2003 9:08 pm
Hi Everyone, just thought I would give some help on this one. First, you can get a repeater for GPS signals to retransmit them inside a building. Or, you could...
15042
Tom Capon
robot@...
Oct 3, 2003 9:35 pm
Well, it gives errors from this code: goto KBD_1 bsf KBD,0x07 goto KBD_2 KBD_1 bcf KBD,0x07 KBD_2 decfsz ISRtmp1,W ; skip if ISRtmp1...
15043
kevinwross
Oct 3, 2003 10:46 pm
... posts.... This user has been removed. We get one of these every couple of months. Best policy is not to comment or reply, just ignore them. No further...
15044
Doug Evans
DEvans@...
Oct 3, 2003 10:55 pm
you need a colon ':' character to define the label, if you are using MPASM. you should have KBD_1: not KBD_1 -de ... From: Tom Capon...
15045
Kevin Ross
kevinwross
Oct 4, 2003 12:28 am
I have enabled moderation for new members. Hopefully, this will prevent distracting spam posts. As always, the best response to an offensive posting is to just...
15046
Jim McBride
jymmyrig
Oct 4, 2003 2:19 am
It has been a while but I believe that I know your problem. Doesn't a label have to have a " : " ? Add those and see what happens. Jim goto KBD_1 bsf...
15047
Jim McBride
jymmyrig
Oct 4, 2003 2:20 am
Well I guess that confirms what I thought. Two like answers are better than one!! Jim...