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_PERIPHERALNAMES_H
sam_grove 5:3f93dd1d4cb3 17 #define MBED_PERIPHERALNAMES_H
sam_grove 5:3f93dd1d4cb3 18
sam_grove 5:3f93dd1d4cb3 19 #include "cmsis.h"
sam_grove 5:3f93dd1d4cb3 20
sam_grove 5:3f93dd1d4cb3 21 #ifdef __cplusplus
sam_grove 5:3f93dd1d4cb3 22 extern "C" {
sam_grove 5:3f93dd1d4cb3 23 #endif
sam_grove 5:3f93dd1d4cb3 24
sam_grove 5:3f93dd1d4cb3 25 typedef enum {
sam_grove 5:3f93dd1d4cb3 26 UART_0 = (int)LPC_UART0_BASE,
sam_grove 5:3f93dd1d4cb3 27 UART_1 = (int)LPC_UART1_BASE,
sam_grove 5:3f93dd1d4cb3 28 UART_2 = (int)LPC_UART2_BASE,
sam_grove 5:3f93dd1d4cb3 29 UART_3 = (int)LPC_UART3_BASE
sam_grove 5:3f93dd1d4cb3 30 } UARTName;
sam_grove 5:3f93dd1d4cb3 31
sam_grove 5:3f93dd1d4cb3 32 typedef enum {
sam_grove 5:3f93dd1d4cb3 33 ADC0_0 = 0,
sam_grove 5:3f93dd1d4cb3 34 ADC0_1,
sam_grove 5:3f93dd1d4cb3 35 ADC0_2,
sam_grove 5:3f93dd1d4cb3 36 ADC0_3,
sam_grove 5:3f93dd1d4cb3 37 ADC0_4,
sam_grove 5:3f93dd1d4cb3 38 ADC0_5,
sam_grove 5:3f93dd1d4cb3 39 ADC0_6,
sam_grove 5:3f93dd1d4cb3 40 ADC0_7
sam_grove 5:3f93dd1d4cb3 41 } ADCName;
sam_grove 5:3f93dd1d4cb3 42
sam_grove 5:3f93dd1d4cb3 43 typedef enum {
sam_grove 5:3f93dd1d4cb3 44 DAC_0 = 0
sam_grove 5:3f93dd1d4cb3 45 } DACName;
sam_grove 5:3f93dd1d4cb3 46
sam_grove 5:3f93dd1d4cb3 47 typedef enum {
sam_grove 5:3f93dd1d4cb3 48 SPI_0 = (int)LPC_SSP0_BASE,
sam_grove 5:3f93dd1d4cb3 49 SPI_1 = (int)LPC_SSP1_BASE
sam_grove 5:3f93dd1d4cb3 50 } SPIName;
sam_grove 5:3f93dd1d4cb3 51
sam_grove 5:3f93dd1d4cb3 52 typedef enum {
sam_grove 5:3f93dd1d4cb3 53 I2C_0 = (int)LPC_I2C0_BASE,
sam_grove 5:3f93dd1d4cb3 54 I2C_1 = (int)LPC_I2C1_BASE,
sam_grove 5:3f93dd1d4cb3 55 I2C_2 = (int)LPC_I2C2_BASE
sam_grove 5:3f93dd1d4cb3 56 } I2CName;
sam_grove 5:3f93dd1d4cb3 57
sam_grove 5:3f93dd1d4cb3 58 typedef enum {
sam_grove 5:3f93dd1d4cb3 59 PWM_1 = 1,
sam_grove 5:3f93dd1d4cb3 60 PWM_2,
sam_grove 5:3f93dd1d4cb3 61 PWM_3,
sam_grove 5:3f93dd1d4cb3 62 PWM_4,
sam_grove 5:3f93dd1d4cb3 63 PWM_5,
sam_grove 5:3f93dd1d4cb3 64 PWM_6
sam_grove 5:3f93dd1d4cb3 65 } PWMName;
sam_grove 5:3f93dd1d4cb3 66
sam_grove 5:3f93dd1d4cb3 67 typedef enum {
sam_grove 5:3f93dd1d4cb3 68 CAN_1 = (int)LPC_CAN1_BASE,
sam_grove 5:3f93dd1d4cb3 69 CAN_2 = (int)LPC_CAN2_BASE
sam_grove 5:3f93dd1d4cb3 70 } CANName;
sam_grove 5:3f93dd1d4cb3 71
sam_grove 5:3f93dd1d4cb3 72 #define STDIO_UART_TX USBTX
sam_grove 5:3f93dd1d4cb3 73 #define STDIO_UART_RX USBRX
sam_grove 5:3f93dd1d4cb3 74 #define STDIO_UART UART_0
sam_grove 5:3f93dd1d4cb3 75
sam_grove 5:3f93dd1d4cb3 76 #ifdef __cplusplus
sam_grove 5:3f93dd1d4cb3 77 }
sam_grove 5:3f93dd1d4cb3 78 #endif
sam_grove 5:3f93dd1d4cb3 79
sam_grove 5:3f93dd1d4cb3 80 #endif