Integrating the ublox LISA C200 modem

Fork of SprintUSBModemHTTPClientTest by Donatien Garnier

Committer:
sam_grove
Date:
Thu Sep 26 00:44:20 2013 -0500
Revision:
5:3f93dd1d4cb3
Exported program and replaced contents of the repo with the source
to build and debug using keil mdk. Libs NOT upto date are lwip, lwip-sys
and socket. these have newer versions under mbed_official but were starting
from a know working point

Who changed what in which revision?

UserRevisionLine numberNew contents of line
sam_grove 5:3f93dd1d4cb3 1 /* mbed Microcontroller Library
sam_grove 5:3f93dd1d4cb3 2 * Copyright (c) 2006-2013 ARM Limited
sam_grove 5:3f93dd1d4cb3 3 *
sam_grove 5:3f93dd1d4cb3 4 * Licensed under the Apache License, Version 2.0 (the "License");
sam_grove 5:3f93dd1d4cb3 5 * you may not use this file except in compliance with the License.
sam_grove 5:3f93dd1d4cb3 6 * You may obtain a copy of the License at
sam_grove 5:3f93dd1d4cb3 7 *
sam_grove 5:3f93dd1d4cb3 8 * http://www.apache.org/licenses/LICENSE-2.0
sam_grove 5:3f93dd1d4cb3 9 *
sam_grove 5:3f93dd1d4cb3 10 * Unless required by applicable law or agreed to in writing, software
sam_grove 5:3f93dd1d4cb3 11 * distributed under the License is distributed on an "AS IS" BASIS,
sam_grove 5:3f93dd1d4cb3 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
sam_grove 5:3f93dd1d4cb3 13 * See the License for the specific language governing permissions and
sam_grove 5:3f93dd1d4cb3 14 * limitations under the License.
sam_grove 5:3f93dd1d4cb3 15 */
sam_grove 5:3f93dd1d4cb3 16 #ifndef MBED_BUSOUT_H
sam_grove 5:3f93dd1d4cb3 17 #define MBED_BUSOUT_H
sam_grove 5:3f93dd1d4cb3 18
sam_grove 5:3f93dd1d4cb3 19 #include "DigitalOut.h"
sam_grove 5:3f93dd1d4cb3 20
sam_grove 5:3f93dd1d4cb3 21 namespace mbed {
sam_grove 5:3f93dd1d4cb3 22
sam_grove 5:3f93dd1d4cb3 23 /** A digital output bus, used for setting the state of a collection of pins
sam_grove 5:3f93dd1d4cb3 24 */
sam_grove 5:3f93dd1d4cb3 25 class BusOut {
sam_grove 5:3f93dd1d4cb3 26
sam_grove 5:3f93dd1d4cb3 27 public:
sam_grove 5:3f93dd1d4cb3 28
sam_grove 5:3f93dd1d4cb3 29 /** Create an BusOut, connected to the specified pins
sam_grove 5:3f93dd1d4cb3 30 *
sam_grove 5:3f93dd1d4cb3 31 * @param p<n> DigitalOut pin to connect to bus bit <n> (p5-p30, NC)
sam_grove 5:3f93dd1d4cb3 32 *
sam_grove 5:3f93dd1d4cb3 33 * @note
sam_grove 5:3f93dd1d4cb3 34 * It is only required to specify as many pin variables as is required
sam_grove 5:3f93dd1d4cb3 35 * for the bus; the rest will default to NC (not connected)
sam_grove 5:3f93dd1d4cb3 36 */
sam_grove 5:3f93dd1d4cb3 37 BusOut(PinName p0, PinName p1 = NC, PinName p2 = NC, PinName p3 = NC,
sam_grove 5:3f93dd1d4cb3 38 PinName p4 = NC, PinName p5 = NC, PinName p6 = NC, PinName p7 = NC,
sam_grove 5:3f93dd1d4cb3 39 PinName p8 = NC, PinName p9 = NC, PinName p10 = NC, PinName p11 = NC,
sam_grove 5:3f93dd1d4cb3 40 PinName p12 = NC, PinName p13 = NC, PinName p14 = NC, PinName p15 = NC);
sam_grove 5:3f93dd1d4cb3 41
sam_grove 5:3f93dd1d4cb3 42 BusOut(PinName pins[16]);
sam_grove 5:3f93dd1d4cb3 43
sam_grove 5:3f93dd1d4cb3 44 virtual ~BusOut();
sam_grove 5:3f93dd1d4cb3 45
sam_grove 5:3f93dd1d4cb3 46 /** Write the value to the output bus
sam_grove 5:3f93dd1d4cb3 47 *
sam_grove 5:3f93dd1d4cb3 48 * @param value An integer specifying a bit to write for every corresponding DigitalOut pin
sam_grove 5:3f93dd1d4cb3 49 */
sam_grove 5:3f93dd1d4cb3 50 void write(int value);
sam_grove 5:3f93dd1d4cb3 51
sam_grove 5:3f93dd1d4cb3 52 /** Read the value currently output on the bus
sam_grove 5:3f93dd1d4cb3 53 *
sam_grove 5:3f93dd1d4cb3 54 * @returns
sam_grove 5:3f93dd1d4cb3 55 * An integer with each bit corresponding to associated DigitalOut pin setting
sam_grove 5:3f93dd1d4cb3 56 */
sam_grove 5:3f93dd1d4cb3 57 int read();
sam_grove 5:3f93dd1d4cb3 58
sam_grove 5:3f93dd1d4cb3 59 #ifdef MBED_OPERATORS
sam_grove 5:3f93dd1d4cb3 60 /** A shorthand for write()
sam_grove 5:3f93dd1d4cb3 61 */
sam_grove 5:3f93dd1d4cb3 62 BusOut& operator= (int v);
sam_grove 5:3f93dd1d4cb3 63 BusOut& operator= (BusOut& rhs);
sam_grove 5:3f93dd1d4cb3 64
sam_grove 5:3f93dd1d4cb3 65 /** A shorthand for read()
sam_grove 5:3f93dd1d4cb3 66 */
sam_grove 5:3f93dd1d4cb3 67 operator int();
sam_grove 5:3f93dd1d4cb3 68 #endif
sam_grove 5:3f93dd1d4cb3 69
sam_grove 5:3f93dd1d4cb3 70 protected:
sam_grove 5:3f93dd1d4cb3 71 DigitalOut* _pin[16];
sam_grove 5:3f93dd1d4cb3 72 };
sam_grove 5:3f93dd1d4cb3 73
sam_grove 5:3f93dd1d4cb3 74 } // namespace mbed
sam_grove 5:3f93dd1d4cb3 75
sam_grove 5:3f93dd1d4cb3 76 #endif