TI's CC3100 host driver and demo. Experimental and a work in progress.

Dependencies:   mbed

Committer:
dflet
Date:
Tue Nov 18 15:45:17 2014 +0000
Revision:
1:da33a9116bda
Child:
2:a3e52cf86086
Added BoardInit.h so that boards can be added. This commit will compile for LPC1768 and nucleoF411.

Who changed what in which revision?

UserRevisionLine numberNew contents of line
dflet 1:da33a9116bda 1 /* mbed Microcontroller Library
dflet 1:da33a9116bda 2 * Copyright (c) 2006-2013 ARM Limited
dflet 1:da33a9116bda 3 *
dflet 1:da33a9116bda 4 * Licensed under the Apache License, Version 2.0 (the "License");
dflet 1:da33a9116bda 5 * you may not use this file except in compliance with the License.
dflet 1:da33a9116bda 6 * You may obtain a copy of the License at
dflet 1:da33a9116bda 7 *
dflet 1:da33a9116bda 8 * http://www.apache.org/licenses/LICENSE-2.0
dflet 1:da33a9116bda 9 *
dflet 1:da33a9116bda 10 * Unless required by applicable law or agreed to in writing, software
dflet 1:da33a9116bda 11 * distributed under the License is distributed on an "AS IS" BASIS,
dflet 1:da33a9116bda 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
dflet 1:da33a9116bda 13 * See the License for the specific language governing permissions and
dflet 1:da33a9116bda 14 * limitations under the License.
dflet 1:da33a9116bda 15 */
dflet 1:da33a9116bda 16 #ifndef BoardInit_H
dflet 1:da33a9116bda 17 #define BoardInit_H
dflet 1:da33a9116bda 18
dflet 1:da33a9116bda 19 #define MBED_BOARD_LPC1768 10
dflet 1:da33a9116bda 20 #define ST_MBED_NUCLEOF411 20
dflet 1:da33a9116bda 21 #define UNDEFINED 30
dflet 1:da33a9116bda 22
dflet 1:da33a9116bda 23 //#define THIS_BOARD MBED_BOARD_LPC1768
dflet 1:da33a9116bda 24 #define THIS_BOARD ST_MBED_NUCLEOF411
dflet 1:da33a9116bda 25
dflet 1:da33a9116bda 26 #endif