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

Dependencies:   mbed

Committer:
dflet
Date:
Wed Nov 19 23:04:04 2014 +0000
Revision:
2:a3e52cf86086
Parent:
1:da33a9116bda
Added more boards!

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 2:a3e52cf86086 21 #define EA_MBED_LPC4088 30
dflet 2:a3e52cf86086 22 #define ST_MBED_NUCLEOF103 40
dflet 2:a3e52cf86086 23 #define UNDEFINED 50 //add new board here
dflet 1:da33a9116bda 24
dflet 1:da33a9116bda 25 //#define THIS_BOARD MBED_BOARD_LPC1768
dflet 2:a3e52cf86086 26 //#define THIS_BOARD ST_MBED_NUCLEOF411
dflet 2:a3e52cf86086 27 //#define THIS_BOARD EA_MBED_LPC4088
dflet 2:a3e52cf86086 28 #define THIS_BOARD ST_MBED_NUCLEOF103
dflet 1:da33a9116bda 29 #endif