Testing the dronecell or other GSM modem

In this page you will find information about testing and using the dronecell or another GSM modem with APM's new AP_Modem library

The current code is still in early development, is buggy and requires some experience to compile and deploy. But, it works and it allows telemetry to flow over TCP or UDP anywhere around the world, directly from your drone!

Requirements:

- APM1 or APM2 can be used. The code is different slightly, so test each separately

- A dronecell or any other AT-command compatible modem

- A data-plan SIM card

- (Optional) Dynamic DNS or fixed IP for convenience

Skills: You will need to be able to compile the ardupilot-mega code from source and install it on the hardware. 

1 Getting the hardware



If you do not have a dronecell, you can try buying one online from diydrones or another store. You might find it difficult to source one. 

Other than the dronecell, you could try another GSM module. The closest is the Arduino GSM shield sold on Amazon which includes a SIM900 GSM module, which is the same brand as the dronecell modem. 

The code should work for any GSM modem that supports AT commands. The only changes would be in the init_script. If you are brave, try another type of GSM/GPRS modem.

SIM Card: Need a compatible GSM network. I personally use the T-Mobile pre-paid SIM card with $2 per day cost (for any day it is tuned on) and up to 200MB of data. It cost me only $10 to buy, all cash, no contract, no names, no addresses ;-)

2. Getting the software [UPDATED x 2]

The software is available as a new branch of the code, based on ArduCopter2.6 and ArduPlane2.4. (ie, the current master branch).

Using GIT

If you are familiar with git, you can pull the modem_test branch from google and compile it, from here:

 http://code.google.com/r/andreas-apm2-wip/source/checkout

You will need to checkout the modem_test branch

git checkout modem_test

then compile and install

Download a pre-compiled HEX file to flash

ArduCopter 2.6

Downloading Manually  [ This approach is no longer practical ]

3. Preparing the hardware

The dronecell comes with a default speed of 38400. Other modems may be set to 9600, or any other speed. The APM1 telemetry port is at 57600. So the two must match. You have three options:

a) Change SERIAL3_BAUD to 38400  in ardupilot code. My libraries respect whatever you set and will work with it. Then the dronecell will work. But xbees won't. So you will have to swap the speed in the code back and forth between 38400 and 57600 to use other radios.


b) A better option is to set the dronecell to 57600 permanently. Connect to dronecell serial to a serial2USB (FTDI) cable a terminal (the one in Arduino IDE will do) and change it to 57600. If you don't have an FTDI cable, you can slave the modem to any Arduino board by connecting it to TX0 and RX0 and then running an empty script ("Basic" in ArduinoIDE). 

Commands are:

AT+IPR=57600

changes speed to 57600

AT&W

writes the change to memory permanently.

c) If option (b) is too complex, then you can also do the following... do (a) to have APM able to speak to the dronecell at 38400. Then change the init_script (in Cellular_Modem.cpp) and add the following in the fifth or sixth line (doesn't matter really exactly where, just after the initial 4 commands):

"AT+IPR=57600",

"AT&W",

That will have the APM tell the dronecell to switch baud rates. The rest of the script will fail (APM is still trying to talk 38400 at this point, but the dronecell is now listening at 57600). Change the SERIAL3_BAUD back to 57600, and now dronecell (and everything else) speak 57600. 


4) Configuring the Software


You will need to make changes to the settings to reflect your SIM card provider


Open AP_Modem.h and find these lines:


#define VAL_APN         "internet" // value for the APN
#define VAL_USER        "" // value for the user name
#define VAL_PW          ""      // value for the password


The settings above are the ones that worked for the T-mobile SIM card. Most SIM cards no longer use a "username" and "password" to log onto the data network, so those usually remain blank. The APN is carrier specific, though many use "internet" as the APN, so try that.

 

Once you've made the changes, compile and install the code.


5. Connecting the modem


You will need to connect the modem to the telemetry port. Look at the instructions for Xbee, and see where the telemetry port is on your board. If you already use Xbee, this is easy ;-)


Connect RX, TX and GND to the modem. I can't remember if it is TX->TX or TX->RX, but if the modem isn't responding, try switching around. Having an FTDI cable to troubleshoot or an extra Arduino will help a lot.


IMPORTANT - POWER CONSIDERATION:

A GSM modem will draw up to 2.0-2.5A in bursts when transmitting. You cannot power it from the APM. You probably cannot power it from an ESC BEC, though you could try. I power it from a 10A rated BEC (Castle BEC). You can also use a separate battery and BEC to power it. Whatever you do, you need to meet two requirements:


1) provide at least 2.5A clean power at 5V

2) power modem and APM from same power*


* They must share a GND for the TTL to work. If you have two power sources and share a GND, you may create a weird path through your board from one power source to the other. *ZAP*. Easier to run both off a sufficiently strong BEC or battery.

 

6. Set the parameters [NEW]

 

 

MDM_BLIND 1.000000 -- Set to 1, to dial blindly. Set to 0 to validate the modem response


MDM_DEBUG 0.000000 -- Set to 1 for debug messages on the console 


MDM_ENABLED 1.000000 - Enable


MDM_IP1 192.000000  - First byte of IP address
MDM_IP2 168.000000 - Second byte of IP address
MDM_IP3 0.000000
MDM_IP4 161.000000 - Fourth byte...


MDM_PORT 14550.000000  - Port number 


MDM_PROTO 0.000000 - Protocol - UDP=0, TCP=1


MDM_RATE 115.000000 - Serial speed - short form (1=1024,2,4,9,19,38,57,115=115200)


MDM_SERIAL 3.000000 - Serial port (0 is Serial/console, 3 is Serial3/telemetry)


MDM_STATE 0.000000 - Don't change, used to see what state we're in

7. Setup the GCS


The GCS will need to connect to the Internet with a public IP address and the ability to receive traffic on UDP/14550 (or if you changed that, whatever you set). The IP address must be fixed or have a dynamic DNS name, or you will have to set it in the code each time you re-connect. I use a dynamic DNS for convenience. For testing, a fixed IP will work fine. 

Make sure the port is open on any firewalls or gateways and the traffic can get through. 

With Mission Planner, you will set it to UDP and to listen on port 14550.

8. Start the APM

If you are connected on the USB, you will see the modem initialization in ridiculous line-by-line detail (if debug is on). It looks like this:


Init ArduCopter V2.6-modem

Free RAM: 4096
FW Ver: 118
----------------------------------------


load_all took 67us

--MODEM starting on Serial 3 @ 115200 baud
Press ENTER 3 times for CLI

GSTABILIZE> Mode STABILIZE
ublox update:35: gps read timeout 3662 0
OK

GPS
----------------------------------------
enabled

9. Success (??)

If all goes well, here's what should happen:

- Your APM starts up

- The APM sends the init script to the modem

- The modem establishes an Internet link and then start copying traffic (bridging) over UDP or TCP. 

- The APM sends Telemetry data, once it is done initializing. 

- The telemetry data flows through the modem, across the Internet and to the UDP port. This takes about 30sec to a minute to start arriving the first time. 

Wait for a bit for the flow to start, then start MP and tell it to listen on UDP 14550. If all goes well, it will say "Getting parameters" and then connect in the usual way.

You will notice about a 2 second "lag" between activity on the drone and activity on the GCS. You move the drone, the horizon moves on the GCS two seconds later. That is because of the latency introduced by the Internet routers. It can be optimized (and will), but will always be a bit lagged compared to line-of-sight speed-of-light radios. However, despite the latency, the system is not losing packets at 57600 and the flow is consistent and good. So except for joystick flying, you can do your mission planning, PID tuning and such easily over IP.

Comments, questions or support requests below. 

Comment

You need to be a member of Telemetry over cellular IP to add comments!

Comment by Veikko Vierola on July 23, 2012 at 12:44pm

Ah, found this... I just need to give the AT command to the DC to tell the IP.....

6. After connecting to the cellular network, you now need to get an IP address assigned from the cellular network.

AT+CIFSR\r

This command will respond with the IP address

7. At this point, all the settings are set, and the DroneCell is all ready for communication with a server. Note in this example that 66.249.90.104 is the IP address of the server and 1024 is the port that you’re communicating over.

AT+CIPSTART=”TCP”,”66.249.90.104”,”1024”\r 

Comment by Veikko Vierola on July 23, 2012 at 12:37pm

OK, so the RN-174 and 3g-router are both in the aircraft? I just wonder how I'll get the DroneCell ip-address?

Comment by Tommy Larsen on July 23, 2012 at 10:09am

Hi

I'm up and running with my system now :) 

I connect this  RN-174 to this onboard 3g router

I do have a non-firewalled APN SIM card. Set Mission Planner to TCP, enter IP and port and connected :)

Comment by Veikko Vierola on July 23, 2012 at 10:01am

I should get the FTDI cable this week so I'm able to continue the DC testing with a bit better trouble shooting capabilities.

@Andreas, have you managed to make the link between DroneCell-modem and computer USB-3G-modem? I guess your SIM-cards doesn't have any APN-restrictions? It would be just nice to know that it is possible.

Comment by Gundeep on July 17, 2012 at 3:10am

I tried the above method, but the APM Planner could not connect to my drone.

My computer connects to the internet through a DSL Modem (Router). Therefore I don't have a direct public IP Address but only an internal IP. Could this be a problem? 


Moderator
Comment by Alex on July 8, 2012 at 11:54am

I think the idea of settinge verythign up on your server as a cloud is a great idea!  Should also make things much easier for people to setup aswell!  As for the privacy, I think as long as you warn people what information you will see, then they can choose if they want to use it or not..

Have you made any progress with this?


Developer
Comment by Andreas M. Antonopoulos on July 4, 2012 at 11:24am

It will take me several days to get that done (won't take long, but have several other things going on right now). 

In the mean time, I would suggest bench-testing it on ArduCopter to get the modem and GCS working. 

This code is really not ready for flight testing - it is very immature. I need more bench testing to find the bugs before we are ready for flights, just my suggestion.

Comment by Asaak on July 4, 2012 at 11:10am

Hi!

Thanks for answering!!

Yes I use GIT ( GUI interface for windows, and I do a clone from modem_test branch ). I compile Arduplane so maybe it is why it is not working. I want to try it on my bixler, so please, if you have a moment can you make it possible??

I will try problem 2 solution as soon as I can compile it!

Cheers!


Developer
Comment by Andreas M. Antonopoulos on July 4, 2012 at 10:10am

Hi Asaak!

Sorry for the delay

1) I have no idea what is going on with the compiling of AP_Modem. 

Did you get it with git? If so, did you do the "git checkout modem_test"?

Are you compiling for copter? Plane does not have the modem code yet, just copter. Try it on copter, if it works I can move it to plane.

2) The parameter is for numeric IP, not domain name (can't pass strings in parameters). So in your case you will have to modify the code to replace the IP with your dyndns

Comment by Asaak on July 4, 2012 at 9:17am

still stuck...please help me with my two problems...as I said:

1- compiling OK but no inclusion fo the library AP_Modem

2- If I succeed with problem number 1 and I am able of compiling the modified firmware which use AP_Modem library, how can I introduce an ip such myplane.dyndns.org using the 4byte address format for that purpose?

Sorry for asking for help so many times but I have been willing to test this for so many time and now that I can I found this problems!

Thanks again!

Comment by Asaak on July 3, 2012 at 11:12am

Still no success..compiling again and again and works fine..but it is because I am not using files included in AP_Modem directory...any ideas?

Thank you very much!

Comment by Asaak on July 3, 2012 at 8:27am

Sorry it is me again but...it appears to me that AP_Modem it is not used anywhere in the code...that is why I can introduce errors in AP_modem .h/.cpp files and nothing happens..

Comment by Asaak on July 3, 2012 at 8:19am

Hi everybody!!

After beeing busy for a few weeks I am able to start testing. I've got two questions:

1.- I am able to checkout the branch modem_test. However when I compile it using arduino IDE, I found that AP_Modem does not appear, not the .h / .cpp or the directory. This is why I can introduce some random chars on this fiels and ardupilot.pde will compile succesfully. What am I missing??

2 .- If I have a dyndns account configured and I want to use it instead of a fixed IP, how can i introduce this ip...I mean..there are 4 variables for each of the 4 bytes of the Ip..but if I have something like..myplane.dyndns.org ...how can I set it up on APM PLanner?

Thanks guys!


Developer
Comment by Andreas M. Antonopoulos on July 1, 2012 at 3:11pm

Veikko: 

- You can work with 38400, 57600 is just... faster.

- Yes, just leave the VAL_USER and VAL_PW empty and fill the VAL_APN. 

- Each reboot puts the modem back to the stored baud rate (you store it to permanent memory with AT&W)

- I don't know what AT+IPR=0 does. I don't think Dronecell has autobaud anything. 

Comment by Veikko Vierola on July 1, 2012 at 2:36pm

Andreas how would the AT+IPR=0 work? It is some sort of auto baud rating?

Comment by Veikko Vierola on July 1, 2012 at 2:27pm

Andreas, I think the APN is internet without any password or username, but I have to confirm it.

Is the 57600 needed for proper operation, or can I work with 38400?

If there is no password or username and the APN is internet shall I write it to the script like this:


#define VAL_APN        "internet" // With or without the quotation marks???
#define VAL_USER     "" // value for the user name, shall this line be removed totally if no username???
#define VAL_PW         ""    // value for the password, shall this line be removed totally if no pwd???

Does the Hard reboot of modem change the baudrate always back to 38400?


Developer
Comment by Andreas M. Antonopoulos on July 1, 2012 at 10:26am

Perhaps I need to write a little sketch that cycles through all baud rates, trying to get a response from the modem. Then as soon as it does, get the modem to switch rates and reset it. That way, the hardest part which is setting the initial rate might be easier. 


Developer
Comment by Andreas M. Antonopoulos on July 1, 2012 at 10:24am

Veikko, excellent. That means the IPR=57600 didn't work previously. Now that you confirmed operation at 38400, you can repeat the process to switch baud to a faster rate. Replace the init string with just the IPR and &W and see if it works?

Also, the CSTT sets the APN, username and password. Did you get the correct APN to use from your ISP? The default is APN=internet, user="", password="". That works with some carriers, but not all. You need to ask them what APN to use and if it needs a username and password. Then the CSTT won't fail ;-)

Comment by Veikko Vierola on July 1, 2012 at 10:16am

Now APM started to communicate with DC I presume:

I changed every baud rate to 38400

The init script looks like this now:

// script for generic GSM/GPRS AT-command capable modem (based on SIM900 dronecell) - VERBOSE
// TODO use prog_char and PROGMEM here
const char* Modem::init_script[] = {
"+++~~~~ATH0",
                    // Break into channel if there is an existing connection
//"AT+CFUN=1,1",            // Hard reboot of modem
"~~~~~~~~~~~~~~AT",                    // Wait...
"AT+IPR=38400",
"AT&W",
"AT V1 E1 X1 S0=0",        // Set error response and do not pickup on ring
"AT+CREG=2",            // Set various notice messages and parameters
"AT+CMEE=2",
"AT+CR=1",
"AT+CRC=1",
"AT+CSNS=4",
"AT+CSMINS=1",
"AT+CSCLK=0",
"AT+CIURC=1",
"AT+CGEREP=2",
"AT+CIPMUX=0",            // Single channel communication (ie only one socket can be opened)
"AT+CIPMODE=1",            // Transparent bridge mode
"AT+CIPCCFG=8,10,10,0", // GPRS params
"~~AT+CMUX=0,0,4,127,10,3,30,10,2", // GPRS/IP params
"~~AT+CSTT=\"%a\",\"%u\",\"%p\"",   // AT+CSTT="APN","username","password" - login to service provider/carrier
"~~AT+CIICR",                // Connect!
"~~~~~~~~AT+CIFSR",            // Get IP address (for info only)
"~~AT+CIPSTART=\"%t\",\"%i\",\"%d\"",   // AT+CIPSTART="protocol","ip address or domain","port #" - make the bridge
NULL, // MUST have a NULL termination or you get an infinite loop
};

If I leave the hard reboot on the terminal stops always after command and no more messages are received. But if I // the line off, the terminal shows all modem answers

Except after this command (~~AT+CSTT=\"%a\",\"%u\",\"%p\"",)

the modem reports error (timeout)....

Comment by Veikko Vierola on July 1, 2012 at 1:37am
I why the dronecell has two gnd pins beside each other?

Social Networking

Contests

Season Two of the Trust Time Trial (T3) Contest has now begun. The fourth round is an accuracy round for multicopters, which requires contestants to fly a cube. The deadline is April 14th.

A list of all T3 contests is here

Groups

Advertisement

© 2013   Created by Chris Anderson.   Powered by

Badges  |  Report an Issue  |  Terms of Service