TI's CC3100. A test demo with very little testing done!
Fork of cc3100_Test_Demo2 by
myBoardInit.h@0:e89ba455dbcf, 2015-02-10 (annotated)
- Committer:
- dflet
- Date:
- Tue Feb 10 12:09:29 2015 +0000
- Revision:
- 0:e89ba455dbcf
- Child:
- 5:d3b320ebd469
For test only! Not much has been tested, but the 2 demo apps run ok. Alot more work needs to be done!
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
dflet | 0:e89ba455dbcf | 1 | /* mbed Microcontroller Library |
dflet | 0:e89ba455dbcf | 2 | * Copyright (c) 2006-2013 ARM Limited |
dflet | 0:e89ba455dbcf | 3 | * |
dflet | 0:e89ba455dbcf | 4 | * Licensed under the Apache License, Version 2.0 (the "License"); |
dflet | 0:e89ba455dbcf | 5 | * you may not use this file except in compliance with the License. |
dflet | 0:e89ba455dbcf | 6 | * You may obtain a copy of the License at |
dflet | 0:e89ba455dbcf | 7 | * |
dflet | 0:e89ba455dbcf | 8 | * http://www.apache.org/licenses/LICENSE-2.0 |
dflet | 0:e89ba455dbcf | 9 | * |
dflet | 0:e89ba455dbcf | 10 | * Unless required by applicable law or agreed to in writing, software |
dflet | 0:e89ba455dbcf | 11 | * distributed under the License is distributed on an "AS IS" BASIS, |
dflet | 0:e89ba455dbcf | 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
dflet | 0:e89ba455dbcf | 13 | * See the License for the specific language governing permissions and |
dflet | 0:e89ba455dbcf | 14 | * limitations under the License. |
dflet | 0:e89ba455dbcf | 15 | */ |
dflet | 0:e89ba455dbcf | 16 | #ifndef myBoardInit_H |
dflet | 0:e89ba455dbcf | 17 | #define myBoardInit_H |
dflet | 0:e89ba455dbcf | 18 | |
dflet | 0:e89ba455dbcf | 19 | |
dflet | 0:e89ba455dbcf | 20 | #define MBED_BOARD_LPC1768 10 |
dflet | 0:e89ba455dbcf | 21 | #define ST_MBED_NUCLEOF411 20 |
dflet | 0:e89ba455dbcf | 22 | #define EA_MBED_LPC4088 30 |
dflet | 0:e89ba455dbcf | 23 | #define ST_MBED_NUCLEOF103 40 |
dflet | 0:e89ba455dbcf | 24 | #define ST_MBED_NUCLEOF401 50 |
dflet | 0:e89ba455dbcf | 25 | #define UNDEFINED 60//add new board here |
dflet | 0:e89ba455dbcf | 26 | |
dflet | 0:e89ba455dbcf | 27 | #define THIS_BOARD MBED_BOARD_LPC1768 |
dflet | 0:e89ba455dbcf | 28 | //#define THIS_BOARD ST_MBED_NUCLEOF411 |
dflet | 0:e89ba455dbcf | 29 | //#define THIS_BOARD EA_MBED_LPC4088 |
dflet | 0:e89ba455dbcf | 30 | //#define THIS_BOARD ST_MBED_NUCLEOF103 |
dflet | 0:e89ba455dbcf | 31 | //#define THIS_BOARD ST_MBED_NUCLEOF401 |
dflet | 0:e89ba455dbcf | 32 | #endif |