Re: SHIFTIN SHIFTOUT timing problem
high presspwr ' there is no pin defined as presspwr
If that is so, then pick one and make it so, some thing like
Code:
presspwr var PortA.0
temp2 = 1000 - celsius ' there is no variable named temp2
Code:
temp2 var word 'a byte only holds 0-255
d[17] = temp2.byte0
d[18] = temp2.byte1 ' There is no array named d.
assigns value to 2 bytes in array, set up array,
high pgc ' there is no pin defined as pgc
again make a pin do this by assigning it to that duty
Code:
pgc var PortA.1 ' or some other unused pin
gosub shutdownmemory ' there is no sub-routine with this name
Make a sub directory or remove the call to it and send the code elsewhere using
goto or gosub as appropriate.
gosub lowestpower ' there is no sub-routine with this name either end '
I do not wish it to stop or end just continue to get int information.
same answer as above. this is the disadvantage to using code you did not write, you are forced into the position of clairvoyant as you try to imaging what the programmer envisioned.
Probably the best argument for chewing through someone else's code is to learn from it, the cost is the frustration of trying to understand it.
I hope you found something useful in my rant,
JS
If you do not believe in MAGIC, Consider how currency has value simply by printing it, and is then traded for real assets.
.
Gold is the money of kings, silver is the money of gentlemen, barter is the money of peasants - but debt is the money of slaves
.
There simply is no "Happy Spam" If you do it you will disappear from this forum.
Bookmarks