Programming Your Mobile Computer; Programming In C Language - CipherLab 8000 GPRS Cradle Reference Manual

For 8000 series mobile computers
Table of Contents

Advertisement

PROGRAMMING YOUR MOBILE COMPUTER

You may write your own code for the mobile computer to communication with the 8000
GPRS Cradle via the Cradle-IR interface.

4.1 PROGRAMMING IN C LANGUAGE

An example is provided below. Refer to CipherLab C Programming Guide for details.
char c;
SetCommType(1,COMM_IR);
open_com(1,BAUD_57600|DATA_BIT8|PARITY_NONE|HANDSHAKE_NONE);
...
clear_com(1);
write_com(1,"AT\r");
while (!com_eot(1));
while (1) {
if (read_com(1,(void*)&c) )
{
...
}
...
}
...
Note: If you are programming in BASIC language, make sure the default delimiter 0x0d
(CR) is in use; otherwise, call COM_DELIMITER().
/* Send string or char to COM1*/
/*read COM1 buffer data and save it in the C*/
Chapter 4
/*Set COM1 for IR*/
25

Advertisement

Table of Contents
loading

Table of Contents