PDA

View Full Version : Hserout String



MICOCALI
- 25th August 2004, 13:18
i HAVE ONE PROBLE
i'LL WRITE A COMMAND HSEROUT
EXAMPLE:

HSEROUT ["AT+CKPD="1"",13] BUT THE COMPILER SEND ME ERROR

OK BUT WHAT IS THE COMMAND FOR SEND THIS CARACTER ( " )?

Dave
- 25th August 2004, 15:51
Hello, I would send the decimal or hex equivalent of the character you would like to display such as:
HSEROUT ["AT+CKPD=",$22,"1",$22,13] This is the hex equivalent of (")
HSEROUT ["AT+CKPD=",34,"1",34,13] This is the decimal equivalent (")

Both of these statements would output a string looking simething like: AT+CKPD="1" with a carriage return.

HTH
Dave Purola,