BS2 : EEPROM AMAZINGLY small? Workaround?
IceFirePro
Posts: 86
Hello,
I just tried to see how big is the EEPROM and I was able to just print (DEBUG) the following line "Let's try with another text, which is as long as the first, and shold stop here i know now" 10 times and it's full?
How do you guys do logic with EEPROM so small? Is there a workaround?
I just tried to see how big is the EEPROM and I was able to just print (DEBUG) the following line "Let's try with another text, which is as long as the first, and shold stop here i know now" 10 times and it's full?
How do you guys do logic with EEPROM so small? Is there a workaround?
Comments
Suggestion: Instead of tranmitting full sentences in debug, send short number patterns and use a Comm program to convert them to thier verbose translations.
(And you thought the Bs2 had no Eeprom... Take a look at the Bs1 stats.)
▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔
Before you criticize someone, walk a mile in his shoes. That way if he gets angry, he'll be a mile away and barefoot. - unknown
No sir, it ain't in the running for biggest memory, but a more helpful & loyal company and followers you will not find.
BTW you do have other Parallax options, other BS2s with 8 times the memory, or the Propeller.
▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔
·"If you build it, they will come."
Just let each string/word you want to display = a byte/charachter of your choosing.
I've built a VB5 program from samples I found from the stamp community that monitors the comm port and responds to my particular config.· I've seen bs2 samples too.· Just build a program that takes yer personal tokens from the stamp·and converts it to your strings.
Or.. just let the tokens appear in a debug screen.· Since they're your tokens, you should recognize them.· As it was said in "The Matrix", "after a while, I don't see the stream anymore.·Instead,·I see blond, brunette, redhead...."
▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔
Before you criticize someone, walk a mile in his shoes. That way if he gets angry, he'll be a mile away and barefoot. - unknown
Post Edited (hover1) : 6/11/2010 10:42:50 PM GMT
hope this helps
One of my project using BS2p and VBxpress 2008, i do as suggested above:
I send a debug with code like C:240 TF1:32 TC1:0 ...
Which in VB I know what C: means Compass value.
So I parse each part and display the result.
So this way I was able to send a lot of info and cram a lot more programming stuff!
So once you know what code you are using and how big, let VB do the rest !
Cheers
Yosh!