TI's CC3100. A test demo with very little testing done!
Fork of cc3100_Test_Demo2 by
myBoardInit.h@8:bb9cccbe84d7, 2017-07-22 (annotated)
- Committer:
- gaoyang
- Date:
- Sat Jul 22 05:04:14 2017 +0000
- Revision:
- 8:bb9cccbe84d7
- Parent:
- 5:d3b320ebd469
DAS
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 | 5:d3b320ebd469 | 25 | #define Seeed_Arch_Max 60 |
dflet | 5:d3b320ebd469 | 26 | #define UNDEFINED 70//add new board here |
dflet | 0:e89ba455dbcf | 27 | |
gaoyang | 8:bb9cccbe84d7 | 28 | #define THIS_BOARD K64F |
dflet | 0:e89ba455dbcf | 29 | //#define THIS_BOARD ST_MBED_NUCLEOF411 |
dflet | 0:e89ba455dbcf | 30 | //#define THIS_BOARD EA_MBED_LPC4088 |
dflet | 0:e89ba455dbcf | 31 | //#define THIS_BOARD ST_MBED_NUCLEOF103 |
dflet | 0:e89ba455dbcf | 32 | //#define THIS_BOARD ST_MBED_NUCLEOF401 |
dflet | 5:d3b320ebd469 | 33 | //#define THIS_BOARD Seeed_Arch_Max |
dflet | 0:e89ba455dbcf | 34 | #endif |