You’re right! I don’t know why I didn’t think of this. This is exactly the strategy we use for generating a waveform from a lookup table: you don’t lookup every point on the output, rather you lookup the point appropriate to the amount of time which has expired since the last time you looked up a point.
OKay. you may not hear from me for a few days. I’m off modifying my servo controller…!
I might try that routine but I might try that routine but I still have a problem wiht my SRF05. the old way of measuring the echo pulse will not work since it gets interrrupted. I need to get another method of measuring the echo pulse from the SRF05
Have you read about the “capture” method in the CCP module
It may take some reading of the data sheet, but when I used an SRF04 with my PIC18F4620, I used the CCP module. What this basically does is measure the time it takes for a pin to change state. You have to use a specific pin, either pin 16 or 17, and then there are two interrupt options.
1) You get a PING from the sensor on your CCP pin, the timer stops counting, and you get an interrupt.
2) You never get a ping, and the timer overflows, generating a different interrupt.
It may take some reading and some more questions, but it is very accurate and easy to use.
I’m trying to measure the echo pulse in a way that I can store its value in an 8bit register that way I dont need to minipulate it inorder to use it in my program. I could compair it to a number and do somethign accordingly. I looked a little into the CCP module but it seems like that will give me a 16 bit value for the range. Its annoying how things that worked stop when you add something seemingly unrelated. I guess without problems like this programming wouldnt be much fun!
edit: for now i have my old routine in a working state but i’d rather use something a little more accurate.
well, if you setup your 16 well, if you setup your 16 bit timer to overflow at around 40 mSec, then you can just use the high byte of the timer as your answer ( 8 bits ).
my original plan was to use the hardware pwm for the srevo but for some reason I cant seem to get it down to 50Hz. the lowest I could get it was about 500 hz. Now I need to figure out an interrupt routine that will work for both the servo and the pwm for the motors. Modifying my routine for the motor pwm didnt seem to work too well. it doesn’t seem to have enough resolution.
I have a 8Mhz internal clock and I need some ideas.
flaky code I modified my routine for a higher resolution but now the code is flaky. it works for a while then seems to just stop working. I need to modify my routine for measuring the distance with the SRF05 since the interrrupts have made this very inaccurate. I think this is also where my code stalls. I’d also like to figure out a way to reduce the number of interrupts but still have a good resolution so I can get the servo in the right position.
This statement is puzzling. In 500Hz you have even less time to execute all your instructions, but you calim you have it "down" to 500Hz?
The application which has the limiting feature is teh servos. They MUST operate on a 5 to 20ms cycle time. I would guess that 5ms is too short to get decent resolution on your rotational motors.
I would consider running a 20ms interrupt and using that for both the servos and teh rotational motors.
Another option is to have seperate MCUs. One for the servos, one for the motors (maybe even one for the ping sensor) and put them all on an I2C bus.
when I was wrighting about 500hz It was about the hardware pwm. I couldnt figure out how to get a frequency out of that that was less than 500hz. my pic was still using the internal clock of 8Mhz.
my problem is getting a decent resolution that doesnt take up soo many clock cycles
I use a timer for my servos. If you have an 8 MHz internal clock ( I am assuming Fosc = 8Mhz ), then your timers will be driven at 2Mhz ( Fosc / 4 ). However, and this is what I do, prescale your 16 bit timer by 2, so it counts micro seconds. Now you can turn on a servo pin, set your timer to overflow at 1000 - 2000 microseconds, and in the interrupt routine, turn off the output pin. To do the long delay of 20 milliseconds, set your timer to overflow at 20,000 microseconds.
I wish there was a way to attacah a file. I could let you see my servo.asm file which controls 4 servos on an 18F4620.
so do you set the same timer for both parts? set it for the short pulse and then set it for the longer delay. In the interrupt service routine how do you know if you are setting the timer for the short pulse high or the longer delay low? I’m assuming that this method should work to create more than one pulse.
I’d like to see how that works with 4 servos. could you possibly email me the file? my email is snowfortbuilder {at} gmail <dot> com