Communicate to bluetooth devices or wifi per at-commands

Dependents:   Nucleo_bt

Committer:
rainerraul
Date:
Mon Aug 13 20:27:21 2018 +0000
Revision:
0:413f3c13a00a
Child:
1:ce7fb335aa1b
For atcommand Devices

Who changed what in which revision?

UserRevisionLine numberNew contents of line
rainerraul 0:413f3c13a00a 1 #ifndef AT_H
rainerraul 0:413f3c13a00a 2 #define AT_H
rainerraul 0:413f3c13a00a 3
rainerraul 0:413f3c13a00a 4 class atterm
rainerraul 0:413f3c13a00a 5 {
rainerraul 0:413f3c13a00a 6 public:
rainerraul 0:413f3c13a00a 7 char buffer[128];
rainerraul 0:413f3c13a00a 8 void device_init(unsigned long baud);
rainerraul 0:413f3c13a00a 9 void device_init1(unsigned long baud);
rainerraul 0:413f3c13a00a 10 void clear();
rainerraul 0:413f3c13a00a 11 void at_send(char *format, char *buf);
rainerraul 0:413f3c13a00a 12 void at_send1(char *format, char *buf);
rainerraul 0:413f3c13a00a 13 void debug_off(bool l);
rainerraul 0:413f3c13a00a 14 bool off;
rainerraul 0:413f3c13a00a 15 int a;
rainerraul 0:413f3c13a00a 16 char sign;
rainerraul 0:413f3c13a00a 17 } extern at0, at1;
rainerraul 0:413f3c13a00a 18
rainerraul 0:413f3c13a00a 19 #endif