DISCO-F746NG_LCDTS_CC3000_NTP

Dependencies:   BSP_DISCO_F746NG LCD_DISCO_F746NG NTPClient NVIC_set_all_priorities TS_DISCO_F746NG cc3000_hostdriver_mbedsocket mbed

Fork of DISCO-F746NG_LCDTS_demo by ST

Committer:
JackB
Date:
Sat Oct 17 23:07:22 2015 +0000
Revision:
2:030b4c500fce
CC3000 NTP Demo on DISCO-F746NG

Who changed what in which revision?

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