Sending MMS using the cellular module?

Hmm, I am testing the cellular module. Its pretty uphill, but I am still confident that I will have my little project up and running sooner or later.

But, I cannot find any trace of MMS in the drivers, documentation or code-examples.

Am I missing something, or should I wait for Byron Superman to do some tricks :wink:

Just some guesses or ideas… (I’m neither an expert in cellular radio technology nor do I own such a Gadgeteer module, so just take it as a starting point for further research!)

It seems that the cellular radio module basically does AT commands.

“Is there any way to send MMS using AT commands?”
→ No, according to http://www.developer.nokia.com/Community/Discussion/showthread.php?31824-Is-there-any-way-to-send-MMS-using-AT-commands

MMS needs to be transferred by an internet connection with an MMS gateway, data format is somehow similar to email. I suppose that you’ll not be able to connect to such a gateway anyway, because their data (connection details, protocol, etc.) might not be publically available.

Possibile alternatives:

  • Use SMS. Does not support non-text data, but helpful for near-immediate notification.
  • Use Internet via GPRS: You can then send any data to any server:
    Email via SMTP should be possible. Use HTTP to send data to a messaging gateway, that can forward push messages to iOS or Android devices. You can even get an account for a web-based messaging gateway to send SMS or MMS via HTTP.

Maybe this is some helpful information to extend your research… If I’m plain wrong and anybody knows how to support MMS anyway: I’d be interested to know, too.

1 Like

I have not done this myself, but have lots of experience of using embedded systems and modems to send and receive data so I did a little quick search on the topic. :slight_smile:

To be able to do MMS you will need 2 things.

  1. GPRS connection using the MMS gateway APN from your network. If you check your handphone you will see that it has 2 GPRS settings, 1 for data and the other for MMS. You can also check the MMS settings to get an idea of the values you need.

  2. The MMS protocol. This is basically a TCP/IP connection so you will need to have a PPP connection to your modem or the ability within the modem to do a TCP/IP connection if your .NETMF does not support PPP over GPRS.

Some useful info on this Wiki page which refers to some details and specifications you need.

1 Like

PPP is not supported in the latest version of the firmware.

I checked some gateways, and it seems to be possible to send an mms with a connection to a server with HTTP GET/POST.

It looks like most parameters are pretty simple, but one of them is the picture in a SMIL document, which is a link to the picture, residing somewhere else.

See: Synchronized Multimedia Integration Language (SMIL 3.0)

The SMIL could be something like:

Now its just to find out how to upload a picture taken by the camera, to flickr…anyone experience to share on that one?