catb0t / propforth

Automatically exported from code.google.com/p/propforth
0 stars 0 forks source link

Bluetooth init script questions #204

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
What steps will reproduce the problem?
1. On a new batch of HC06 [Name FBT06 instead of livnor]
2. Initialization scripts do not yield OK or any response
3. Alternate program (BTHelper from Propeller Powered) does work

What is the expected output? What do you see instead?
- expect to see 'OK' or 'ERROR' frrom running commands

Please use labels and text to provide additional information.
- after experimenting with the scripts, determined that 
appending additional space and cr after each command yields successful results

CHANGE FROM THIS:
: hcSend
        cogid hcSerialCog iolink .cstr 1000 delms cogid iounlink cr
;

CHANGE TO THIS:
\ NOTE:  last batch of modules need a SPACE and CR after the command!!!
: hcSendcr
        cogid hcSerialCog iolink .cstr space cr 1000 delms cogid iounlink cr
;

Original issue reported on code.google.com by prof.bra...@gmail.com on 2 Sep 2013 at 3:22