Lucas Harlem
01-10-2006, 10:35 AM
In response to my last post about EEPROM, I have a way around using it, but these variables are not responding.
MM Var Byte 'Current Month Variable
LM Var Byte 'Previous Month Variable
Month:
AUXIO
SEROUT 0\1, 16468, [M7]
LM = MM 'I need to copy the value stored in Variable MM into the Variable LM but not make them equal to each other.
MM = 0 'I need to clear this variable without changing the previous value that is stored in LM.
GOTO start 'I am aware that this says to go to start, and not month, it is correct, it does not goto month.
When the stamp is reset, not powered off, just rest, are variables lost?
I am trying to avoid using EEPROM, is this possible in this scenario, because when I run the program the variables are not copying.
I did look at the alternatives to using the stamps EEPROM posted by other members in the previous post, and they were very helpful, I would rather use external eeprom rather than the stamps eeprom.
Thanks
L. Harlem
MM Var Byte 'Current Month Variable
LM Var Byte 'Previous Month Variable
Month:
AUXIO
SEROUT 0\1, 16468, [M7]
LM = MM 'I need to copy the value stored in Variable MM into the Variable LM but not make them equal to each other.
MM = 0 'I need to clear this variable without changing the previous value that is stored in LM.
GOTO start 'I am aware that this says to go to start, and not month, it is correct, it does not goto month.
When the stamp is reset, not powered off, just rest, are variables lost?
I am trying to avoid using EEPROM, is this possible in this scenario, because when I run the program the variables are not copying.
I did look at the alternatives to using the stamps EEPROM posted by other members in the previous post, and they were very helpful, I would rather use external eeprom rather than the stamps eeprom.
Thanks
L. Harlem