Base library for cellular modem implementations

Dependencies:   Socket lwip-sys lwip

Dependents:   CellularUSBModem CellularUSBModem

Deprecated

This is an mbed 2 networking library. For mbed 5, the networking libraries have been revised to better support additional network stacks and thread safety here.

Committer:
mbed_official
Date:
Thu May 08 11:00:26 2014 +0100
Revision:
8:944cd194963e
Parent:
1:4a23efdf0da9
Synchronized with git revision df12bf01ac7dbb50751e2b16a351c894994e1dcf

Full URL: https://github.com/mbedmicro/mbed/commit/df12bf01ac7dbb50751e2b16a351c894994e1dcf/

Who changed what in which revision?

UserRevisionLine numberNew contents of line
mbed_official 0:bb116b4ed7b7 1 /* lwipopts.h */
mbed_official 0:bb116b4ed7b7 2 /* Copyright (C) 2012 mbed.org, MIT License
mbed_official 0:bb116b4ed7b7 3 *
mbed_official 0:bb116b4ed7b7 4 * Permission is hereby granted, free of charge, to any person obtaining a copy of this software
mbed_official 0:bb116b4ed7b7 5 * and associated documentation files (the "Software"), to deal in the Software without restriction,
mbed_official 0:bb116b4ed7b7 6 * including without limitation the rights to use, copy, modify, merge, publish, distribute,
mbed_official 0:bb116b4ed7b7 7 * sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is
mbed_official 0:bb116b4ed7b7 8 * furnished to do so, subject to the following conditions:
mbed_official 0:bb116b4ed7b7 9 *
mbed_official 0:bb116b4ed7b7 10 * The above copyright notice and this permission notice shall be included in all copies or
mbed_official 0:bb116b4ed7b7 11 * substantial portions of the Software.
mbed_official 0:bb116b4ed7b7 12 *
mbed_official 0:bb116b4ed7b7 13 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING
mbed_official 0:bb116b4ed7b7 14 * BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
mbed_official 0:bb116b4ed7b7 15 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
mbed_official 0:bb116b4ed7b7 16 * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
mbed_official 0:bb116b4ed7b7 17 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
mbed_official 0:bb116b4ed7b7 18 */
mbed_official 0:bb116b4ed7b7 19
mbed_official 0:bb116b4ed7b7 20 #ifndef LWIPOPTS_CONF_H_
mbed_official 0:bb116b4ed7b7 21 #define LWIPOPTS_CONF_H_
mbed_official 0:bb116b4ed7b7 22
mbed_official 0:bb116b4ed7b7 23 #define LWIP_TRANSPORT_PPP 1
mbed_official 0:bb116b4ed7b7 24
mbed_official 0:bb116b4ed7b7 25 #endif /* LWIPOPTS_CONF_H_ */
mbed_official 0:bb116b4ed7b7 26