cc3000 UDP server demo

Dependencies:   NVIC_set_all_priorities cc3000_hostdriver_mbedsocket mbed

Committer:
Kojto
Date:
Tue Jun 03 09:20:16 2014 +0000
Revision:
3:62fc96bb91b5
Parent:
2:6079591c6683
update mbed lib to r84

Who changed what in which revision?

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