This is a console for interacting with Vodafone dongles.

Dependencies:   mbed-rtos VodafoneUSBModem mbed

This is a bridge between a serial driven console and a serial driven cellular modem or modem interface. This was written to complement our collaboration with mbed: See https://mbed.org/users/mbed_official/code/VodafoneUSBModem/ for further information.

For example, one can use GNU screen or PuTTY (two popular consoles) to interact with a Vodafone K3770 USB dongle. In the image below I used the UNIX version of PuTTY:

/media/uploads/ashleymills/atcons.png

Support is provided for line-based consoles, which send one line at a time, and for character based consoles.

For character based consoles, the following line-editing features are provided:

  • In-line editing (deletion, left/right arrow keys, insertion)
  • Command history (via up/down arrow keys)

Line buffer length, and command history depth, are compile-time options.

--

How to use:

Compile and save to mbed.

Connect PuTTY or GNU screen to serial port.

If you use GNU screen you probably already know what you are doing.

If you use PuTTY, you need to set the options to specify the serial device and, set the baud rate, and set the "Connection Type" to "Serial":

/media/uploads/ashleymills/putty0.png

You need to set the keyboard to send Control-H for backspace, and use "Linux" function keys and keypad:

/media/uploads/ashleymills/putty1.png

Committer:
ashleymills
Date:
Wed Sep 25 08:43:19 2013 +0000
Revision:
14:3f5fd1d95f5f
Parent:
9:578003606ccc
Updated dependencies.

Who changed what in which revision?

UserRevisionLine numberNew contents of line
ashleymills 0:6c831cc49d22 1 #include "mbed.h"
ashleymills 0:6c831cc49d22 2 #include "rtos.h"
ashleymills 0:6c831cc49d22 3 #include "ATConsole.h"
ashleymills 2:8cc63f7a24cf 4 #include "VodafoneUSBModem.h"
ashleymills 0:6c831cc49d22 5
ashleymills 0:6c831cc49d22 6 DigitalOut myled(LED1);
ashleymills 0:6c831cc49d22 7
ashleymills 14:3f5fd1d95f5f 8 int main() {
ashleymills 14:3f5fd1d95f5f 9 DBG_INIT();
ashleymills 14:3f5fd1d95f5f 10 DBG_SET_SPEED(115200);
ashleymills 14:3f5fd1d95f5f 11 DBG_SET_NEWLINE("\r\n");
ashleymills 14:3f5fd1d95f5f 12
ashleymills 0:6c831cc49d22 13 // create serial
ashleymills 0:6c831cc49d22 14 Serial term(USBTX, USBRX);
ashleymills 0:6c831cc49d22 15 term.baud(115200);
ashleymills 0:6c831cc49d22 16
ashleymills 0:6c831cc49d22 17 // create vodafone dongle interface
ashleymills 2:8cc63f7a24cf 18 VodafoneUSBModem modem;
ashleymills 1:719c0f047c34 19 // force init
ashleymills 1:719c0f047c34 20 size_t smCount;
ashleymills 1:719c0f047c34 21 modem.getSMCount(&smCount);
ashleymills 0:6c831cc49d22 22
ashleymills 0:6c831cc49d22 23 // create AT console
ashleymills 4:6971bded3ebd 24 int lineLength = 79;
ashleymills 9:578003606ccc 25 int numLines = 10;
ashleymills 4:6971bded3ebd 26 bool characterBased = true;
ashleymills 4:6971bded3ebd 27 ATConsole atCons(&term,lineLength,numLines,characterBased,modem.getATCommandsInterface());
ashleymills 0:6c831cc49d22 28 while(1) {
ashleymills 0:6c831cc49d22 29 atCons.update();
ashleymills 0:6c831cc49d22 30 Thread::wait(1);
ashleymills 0:6c831cc49d22 31 }
ashleymills 0:6c831cc49d22 32 }