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 - cmsis_nvic
sam_grove 5:3f93dd1d4cb3 2 * Copyright (c) 2009-2011 ARM Limited. All rights reserved.
sam_grove 5:3f93dd1d4cb3 3 *
sam_grove 5:3f93dd1d4cb3 4 * CMSIS-style functionality to support dynamic vectors
sam_grove 5:3f93dd1d4cb3 5 */
sam_grove 5:3f93dd1d4cb3 6
sam_grove 5:3f93dd1d4cb3 7 #ifndef MBED_CMSIS_NVIC_H
sam_grove 5:3f93dd1d4cb3 8 #define MBED_CMSIS_NVIC_H
sam_grove 5:3f93dd1d4cb3 9
sam_grove 5:3f93dd1d4cb3 10 #include "cmsis.h"
sam_grove 5:3f93dd1d4cb3 11
sam_grove 5:3f93dd1d4cb3 12 #define NVIC_NUM_VECTORS (16 + 33)
sam_grove 5:3f93dd1d4cb3 13 #define NVIC_USER_IRQ_OFFSET 16
sam_grove 5:3f93dd1d4cb3 14
sam_grove 5:3f93dd1d4cb3 15 #ifdef __cplusplus
sam_grove 5:3f93dd1d4cb3 16 extern "C" {
sam_grove 5:3f93dd1d4cb3 17 #endif
sam_grove 5:3f93dd1d4cb3 18
sam_grove 5:3f93dd1d4cb3 19 void NVIC_SetVector(IRQn_Type IRQn, uint32_t vector);
sam_grove 5:3f93dd1d4cb3 20 uint32_t NVIC_GetVector(IRQn_Type IRQn);
sam_grove 5:3f93dd1d4cb3 21
sam_grove 5:3f93dd1d4cb3 22 #ifdef __cplusplus
sam_grove 5:3f93dd1d4cb3 23 }
sam_grove 5:3f93dd1d4cb3 24 #endif
sam_grove 5:3f93dd1d4cb3 25
sam_grove 5:3f93dd1d4cb3 26 #endif