SV: [basicstamps] serin data
Archiver
Posts: 46,084
Greetings!
> hi, i need to store 330 bytes from a serin input, but the BS2sx does not
have that storage
> capability. is there any way that i could expand the memory for this
purpuse?
Sure it does...
You've got a whopping 2KB EEPROM area...
Just stuff the data into the lower part of the program area with WRITE, then
you can read it back later with READ...
(It may be a good idea to 'reserve' the area vith DATA first, so that you
see that it doesn't overlap the program when you press [noparse][[/noparse]Ctrl]+[noparse][[/noparse]M])
:-)
Trygve
BTW: The BS2p allows you to store the data in another 2KB EEPROM block than
the one the program is running in.
> hi, i need to store 330 bytes from a serin input, but the BS2sx does not
have that storage
> capability. is there any way that i could expand the memory for this
purpuse?
Sure it does...
You've got a whopping 2KB EEPROM area...
Just stuff the data into the lower part of the program area with WRITE, then
you can read it back later with READ...
(It may be a good idea to 'reserve' the area vith DATA first, so that you
see that it doesn't overlap the program when you press [noparse][[/noparse]Ctrl]+[noparse][[/noparse]M])
:-)
Trygve
BTW: The BS2p allows you to store the data in another 2KB EEPROM block than
the one the program is running in.