Hi, and thanks to all the replies. I will add them into one reply for the sake of bandwidth :) ... RS-232 driver/receiver. I had the same problem and this...
Thanks for your reply, Sloan. Pls pardon and enlighten me regarding what does your 'group file area' and which 'docs' are you refering. Because I did some...
Ken, Are you trying to send decimal 12 as H0C ,dec 34 as H22 and dec 56 as H38 if so you need to : Byte1 = (Mid(Test,1,1) * 10) + Mid(Test,2,1) Byte2 =...
Sorry, that I think that should have been Byte1 = CByte(Val(Mid(Test,1,1) * 10) + Val(Mid(Test,2,1))) - etc. Call PutQueueStr((OutPut, Chr(Byte1) & Chr(Byte2)...
Hi The group is this Basicx mail list, and if you look at the group home on yahoo (http://groups.yahoo.com/group/basicx/), you'll see a Files area on the left...
Mike, You'll find a little problem with using the MAX233 (or variation) on the BX24 Com1 is that there is an inverter on the BX24 Com1 pins. It may seem...
I've just got a bx-24 which I have sucessfully been programming via the serial port but I want to program it via the parallel port instead. I don't have the...
... I've just got a bx-24 which I have sucessfully been programming via the serial port but I want to program it via the parallel port instead. <---You can't....
Can the BX-35 use more than 32K of program memory by the use of a larger SPI EEPROM, IDE restrictions notwithstanding? Ken ... President and CTO - Arcom...
... Ken, Are you trying to send decimal 12 as H0C ,dec 34 as H22 and dec 56 as H38 <---No. I am trying to send decimal 12 as a hex 12, decimal 34 as hex 34 and...
Just want to make sure of something. In wiring up my own carrier board, the Reset button should go from Pin 22 to Ground (Pin 23), right? Any resistor needed...
Can the BX-35 use more than 32K of program memory by the use of a larger SPI EEPROM, IDE restrictions notwithstanding? Ken ... President and CTO - Arcom...
... Ken, Are you trying to send decimal 12 as H0C ,dec 34 as H22 and dec 56 as H38 <---No. I am trying to send decimal 12 as a hex 12, decimal 34 as hex 34 and...
Ken, Basically all data stored in the BX is stored in binary. The smalled addressable unit is a byte which is 8 bits. The byte has a high order nibble(4bits)...
Let me add that the way I would have done it in regular ol' fashioned basic is print#1, Chr$(&H12) Ken ... President and CTO - Arcom Communications ...
Ken, Check out the page http://www.asciitable.com/ the character intrepretation of a H12 is a Device Control 2 (not a printable character). Mark ... ...
... Ken, Check out the page <http://www.asciitable.com/>http://www.asciitable.com/ the character intrepretation of a H12 is a Device Control 2 (not a printable...
I'm trying to get some halfway decent tones out of a BX-35 using the FreqOut command and an LM386 amplifier. The amp works but I have a slight hiss in the...
Ken, I don't think DCE or DTE is relavent because it has to do with "control" not data. So again, if you have: binary hex dec ASCII char 0111 1010 7A...
Hi Mark. I'm taking this offlist. First of all, thanks for your patience with this. Maybe if I explained what I'm trying to do that would help. Have a look at ...
Hi Ken! It appears that you are wanting to take "123456" and output three bytes, &h12, &h34, &h56, right? If so, you will have to convert the ASCII character...
Hi Ken, Good news and bad news! Good news first! Every thing on Page 97 and 98 is in HEX. Good! Here is how I migh attack it: 1. set up a SendCatCommand...
The ShiftIn ShiftOut commands transmit MSB first. If I remember correctly, asynchronous serial com, (usually called RS-232) is supposed to send LSB first. Does...
Thanks to everyone who offered their help on this issue. I think I have it under control and will try some of the ideas offered to see what works! Now, one...
Anyone have a code snippet, or know where I can find some code to control a servo as an interupt routine to run in the background of my program. Thanks John ...
John Pearson
xero@...
Mar 3, 2003 9:41 pm
12931
Hello! I have built my own BX-35 carrier board, but am having trouble getting the computer to communicate with it. My board is based on the suggested BX-35...