cc3000 hello world demo

Dependencies:   NVIC_set_all_priorities cc3000_hostdriver_mbedsocket mbed-src mbed-rtos

Fork of cc3000_hello_world_demo by Martin Kojtal

Committer:
Kojto
Date:
Wed Oct 09 19:46:33 2013 +0000
Revision:
3:9fb9fa2cec61
Parent:
0:db8738fc21e8
Child:
4:2304a105c87f
smart config define not available for this demo, host driver update rev 36

Who changed what in which revision?

UserRevisionLine numberNew contents of line
Kojto 0:db8738fc21e8 1 /* mbed Microcontroller Library
Kojto 0:db8738fc21e8 2 * Copyright (c) 2006-2013 ARM Limited
Kojto 0:db8738fc21e8 3 *
Kojto 0:db8738fc21e8 4 * Licensed under the Apache License, Version 2.0 (the "License");
Kojto 0:db8738fc21e8 5 * you may not use this file except in compliance with the License.
Kojto 0:db8738fc21e8 6 * You may obtain a copy of the License at
Kojto 0:db8738fc21e8 7 *
Kojto 0:db8738fc21e8 8 * http://www.apache.org/licenses/LICENSE-2.0
Kojto 0:db8738fc21e8 9 *
Kojto 0:db8738fc21e8 10 * Unless required by applicable law or agreed to in writing, software
Kojto 0:db8738fc21e8 11 * distributed under the License is distributed on an "AS IS" BASIS,
Kojto 0:db8738fc21e8 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
Kojto 0:db8738fc21e8 13 * See the License for the specific language governing permissions and
Kojto 0:db8738fc21e8 14 * limitations under the License.
Kojto 0:db8738fc21e8 15 */
Kojto 0:db8738fc21e8 16 #ifndef MAIN_H
Kojto 0:db8738fc21e8 17 #define MAIN_H
Kojto 0:db8738fc21e8 18
Kojto 0:db8738fc21e8 19 #define WIGO 1
Kojto 0:db8738fc21e8 20 #define WIFI_DIPCORTEX 2
Kojto 0:db8738fc21e8 21 #define UNDEFINED 3
Kojto 0:db8738fc21e8 22
Kojto 0:db8738fc21e8 23 #define MY_BOARD WIGO
Kojto 0:db8738fc21e8 24
Kojto 0:db8738fc21e8 25 // use this defines in AP_SECURITY
Kojto 0:db8738fc21e8 26 #define NONE 0
Kojto 0:db8738fc21e8 27 #define WEP 1
Kojto 0:db8738fc21e8 28 #define WPA 2
Kojto 0:db8738fc21e8 29 #define WPA2 3
Kojto 0:db8738fc21e8 30
Kojto 0:db8738fc21e8 31 // Default SSID Settings
Kojto 0:db8738fc21e8 32 #define AP_KEY "test"
Kojto 0:db8738fc21e8 33 #define AP_SECURITY WPA2 // WPA2 must be enabled for use with iPhone or Android phone hotspot!
Kojto 0:db8738fc21e8 34 #define SSID "test"
Kojto 0:db8738fc21e8 35
Kojto 0:db8738fc21e8 36 void init();
Kojto 0:db8738fc21e8 37
Kojto 0:db8738fc21e8 38 #endif