I tired that, it gets bad expression errors on the if inc = "something" line.
I tired that, it gets bad expression errors on the if inc = "something" line.
Last edited by GatorGuy; - 23rd February 2010 at 07:49.
"something" must be replaced with an ascii character or its decimal equivalent.I tired that, it gets bad expression errors on the if inc = "something" line
For instance:
If you Tx the letter "S" then your progam will jump to label "here" and execute the code in it, else it will jump to the label "there" and execute a different code. (if you make it different)Code:HSERIN [Inc] HSEROUT ["Tx Received", 10] if inc = "S" then goto here else goto there endif
You have to fix which ascii character you will send to go to label "here" since any other ascii character will take to label "there"
Al.
All progress began with an idea
When I use single letters or numbers it works like a charm but I would like to use longer strings such as "A23". Anything longer then one character and I get errors. Is this a limitation of picbasic?
Hi,
I think the answer simply is in your Manual ... HSerin Modifiers section.
Alain
************************************************** ***********************
Why insist on using 32 Bits when you're not even able to deal with the first 8 ones ??? ehhhhhh ...
************************************************** ***********************
IF there is the word "Problem" in your question ...
certainly the answer is " RTFM " or " RTFDataSheet " !!!
*****************************************
The following is a technique that I got from Darrel Taylor. It will input a string, and search it for any number of strings.
Note that the "timeout" in the ArrayRead command is the number of characters in the string you are looking for during that pass.
Code:HSERIN2 300,InputTimeout,[Str CharArray\12\10] ; Take in max 12 chars optionally terminated by LF. ARRAYREAD CharArray,19,FailedFirst,[WAIT ("FirstStringToLookFor")] Goto FoundFirstItem FailedFirst: ARRAYREAD CharArray,21,FailedSecond,[WAIT (SecondStringToLookFor")] Goto FoundSecondItem FailedSecond:
Charles Linquist
I should always learn to read my text before hitting SUBMIT. In the example, I have it inputting only 12 chars, while it is testing for a substring of 19 or 21 chars - but you get the idea.
Charles Linquist
Bookmarks