COM problems help please
I am having problems communicating with my custom propeller circuit. I used the same circuit that is on the DEMO board. Yet every time I disconnect the USB cable then reconnect I must toggle the power in order to regain communications.
I wish to have the ability to connect and disconnect the USB cable with out toggling the power is this possiable? If so please show me the light. I was considering keeping the reset pin high?
I wish to have the ability to connect and disconnect the USB cable with out toggling the power is this possiable? If so please show me the light. I was considering keeping the reset pin high?

Comments
Leon
▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔
Amateur radio callsign: G1HSM
Suzuki SV1000S motorcycle
perhaps it is the code
Take a look here
con space = $20 baud = 19200 var long RxDat [noparse][[/noparse] 18 ] byte StringCount obj Ser : "FullDuplexSerial" Pub main ser.start(31,30,0,baud) getcom Pub getcom REPEAT StringCount := 0 repeat until (RxDat [noparse][[/noparse] StringCount ] := SER.rx ) == "|" StringCount ++ IF (rxDat [noparse][[/noparse] 0 ] == "|")&(rxDat [noparse][[/noparse] 1 ] == $54)&(rxDat [noparse][[/noparse] 2 ] == $31)* (rxDat [noparse][[/noparse] 3 ] == SPACE) IF (rxDat [noparse][[/noparse] 4 ] ==$49)&(rxDat [noparse][[/noparse] 5 ] == $44)&(rxDat [noparse][[/noparse] 7 ] == $3F) SER.STR(STRING("| TEST 1 |")) IF (rxDat [noparse][[/noparse] 4 ] == $41)&(rxDat [noparse][[/noparse] 5 ] == $32 )&(RxDat [noparse][[/noparse] 7 ] == $3F) SER.STR(STRING("| TEST 2 |"))I would not think it is the code but let me know what you think.
Leon
▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔
Amateur radio callsign: G1HSM
Suzuki SV1000S motorcycle
Thanks so far people