In SX Microcontrollers, SX/B Compiler and SX-Key Tool, kmonsx wrote: Thanks Paul and pjv for the code! pjv: I'll definitely try the new version and the feature you mention. I've played around a considerable bit from yesterday. There's something very strange about the speed the PC can react in certain circumstances, and I can't quite nail it down. Now I haven't changed one thing on the PC. The logic is just too simple, and doesn't need changed. On the SX side, I wrote (again, I've done this before) a real small routine here: [code] repeat: if pcack <> 0 then repeat inc loopz RC = loopz byteready = 1 waitforpin: if pcack <> 1 then waitforpin byteready = 0 goto repeat [/code] This basically sends 0x00 - 0xFF to the PC, one byte at a time, and it waits on the PC --- but sends it to the PC as fast as it will take it. I hooked up the byteready and pcack leads to my scope, and then measured the time it took for each cycle. The complete cycle took only 4.25+/- us. This is really fast, and I'm happy the PC isn't choking. Man the SX is so much faster than the PC responding to signals, raising and lowering leads, etc I also checked to see if the data is received correctly, and its 100% correct..... I implemented a 16-byte software fifo (circular buffer) into my actual software and it looks like it works as expected. Within only 50 bytes (sometimes a little longer, like 100+), the circular buffer overflows. My data is coming out at a rate of 8 bits every 16us(ie 1 bit every 2us, or 500kbps), so that means that the PC has 16us PER BYTE. And my earlier tests showed that the PC could take a byte every 4.25, almost 1/4 of the time. But the PC chokes in this environment. This fifo gives my pc 16 times longer to reply -- but I don't see how it needs it --- and this *still* isn't enough. So I went to my earlier code without the fifo, and added "wait" statements which cause the main program to wait for the PC to become ready, and wait for the pc to ACK the byte. I haven't put a scope on yet to see how much I'm being penalized. I'm betting 4us. Which is a long time, especially because main has other tasks.... My early conclusions point to the fact that PC seems to process/task-switch to other running applications whenever there is no activity for x number of microseconds. So if you are pounding it, it remains active, and your response times are low. Wait 5 or 10 microseconds, and it switches to do something else, and then takes a little bit to come back to service your new request. Just a guess at this point. Keith ---------- End of Message ---------- You can view the post on-line at: http://forums.parallax.com/forums/default.aspx?f=7&p=3&m=78490#m79678 Need assistance? Send an email to the Forum Administrator at forumadmin@parallax.com The Parallax Forums are powered by dotNetBB Forums, copyright 2002-2005 (http://www.dotNetBB.com)