创建mbed

Dependencies:   EthernetInterface SDFileSystem mbed-rtos mbed

Committer:
sunyiming
Date:
Tue Mar 06 08:53:46 2018 +0000
Revision:
1:6465a3f5c58a
??OK

Who changed what in which revision?

UserRevisionLine numberNew contents of line
sunyiming 1:6465a3f5c58a 1 /* Copyright (C) 2012 mbed.org, MIT License
sunyiming 1:6465a3f5c58a 2 *
sunyiming 1:6465a3f5c58a 3 * Permission is hereby granted, free of charge, to any person obtaining a copy of this software
sunyiming 1:6465a3f5c58a 4 * and associated documentation files (the "Software"), to deal in the Software without restriction,
sunyiming 1:6465a3f5c58a 5 * including without limitation the rights to use, copy, modify, merge, publish, distribute,
sunyiming 1:6465a3f5c58a 6 * sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is
sunyiming 1:6465a3f5c58a 7 * furnished to do so, subject to the following conditions:
sunyiming 1:6465a3f5c58a 8 *
sunyiming 1:6465a3f5c58a 9 * The above copyright notice and this permission notice shall be included in all copies or
sunyiming 1:6465a3f5c58a 10 * substantial portions of the Software.
sunyiming 1:6465a3f5c58a 11 *
sunyiming 1:6465a3f5c58a 12 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING
sunyiming 1:6465a3f5c58a 13 * BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
sunyiming 1:6465a3f5c58a 14 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
sunyiming 1:6465a3f5c58a 15 * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
sunyiming 1:6465a3f5c58a 16 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
sunyiming 1:6465a3f5c58a 17 */
sunyiming 1:6465a3f5c58a 18
sunyiming 1:6465a3f5c58a 19 #ifndef LWIPOPTS_CONF_H
sunyiming 1:6465a3f5c58a 20 #define LWIPOPTS_CONF_H
sunyiming 1:6465a3f5c58a 21
sunyiming 1:6465a3f5c58a 22 #define LWIP_TRANSPORT_ETHERNET 1
sunyiming 1:6465a3f5c58a 23
sunyiming 1:6465a3f5c58a 24 #if defined(TARGET_LPC4088) || defined(TARGET_LPC4088_DM)
sunyiming 1:6465a3f5c58a 25 #define MEM_SIZE 15360
sunyiming 1:6465a3f5c58a 26 #elif defined(TARGET_LPC1768)
sunyiming 1:6465a3f5c58a 27 #define MEM_SIZE 16362
sunyiming 1:6465a3f5c58a 28 #endif
sunyiming 1:6465a3f5c58a 29
sunyiming 1:6465a3f5c58a 30 #endif