Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependencies: mbed NVIC_set_all_priorities cc3000_hostdriver_mbedsocket
main.h@7:fbc17364ea63, 2013-11-06 (annotated)
- Committer:
- Kojto
- Date:
- Wed Nov 06 20:50:55 2013 +0000
- Revision:
- 7:fbc17364ea63
- Parent:
- 6:76465a08f5c1
- update to the host driver rev45; - the new EthernetInterface API
Who changed what in which revision?
| User | Revision | Line number | New contents of line |
|---|---|---|---|
| Kojto | 3:f38499c4000e | 1 | /* mbed Microcontroller Library |
| Kojto | 3:f38499c4000e | 2 | * Copyright (c) 2006-2013 ARM Limited |
| Kojto | 3:f38499c4000e | 3 | * |
| Kojto | 3:f38499c4000e | 4 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| Kojto | 3:f38499c4000e | 5 | * you may not use this file except in compliance with the License. |
| Kojto | 3:f38499c4000e | 6 | * You may obtain a copy of the License at |
| Kojto | 3:f38499c4000e | 7 | * |
| Kojto | 3:f38499c4000e | 8 | * http://www.apache.org/licenses/LICENSE-2.0 |
| Kojto | 3:f38499c4000e | 9 | * |
| Kojto | 3:f38499c4000e | 10 | * Unless required by applicable law or agreed to in writing, software |
| Kojto | 3:f38499c4000e | 11 | * distributed under the License is distributed on an "AS IS" BASIS, |
| Kojto | 3:f38499c4000e | 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| Kojto | 3:f38499c4000e | 13 | * See the License for the specific language governing permissions and |
| Kojto | 3:f38499c4000e | 14 | * limitations under the License. |
| Kojto | 3:f38499c4000e | 15 | */ |
| Kojto | 3:f38499c4000e | 16 | #ifndef MAIN_H |
| Kojto | 3:f38499c4000e | 17 | #define MAIN_H |
| Kojto | 3:f38499c4000e | 18 | |
| Kojto | 3:f38499c4000e | 19 | #define WIGO 1 |
| Kojto | 3:f38499c4000e | 20 | #define WIFI_DIPCORTEX 2 |
| Kojto | 3:f38499c4000e | 21 | #define UNDEFINED 3 |
| Kojto | 3:f38499c4000e | 22 | |
| Kojto | 3:f38499c4000e | 23 | #define MY_BOARD WIGO |
| Kojto | 3:f38499c4000e | 24 | |
| Kojto | 3:f38499c4000e | 25 | void init(); |
| Kojto | 3:f38499c4000e | 26 | |
| Kojto | 3:f38499c4000e | 27 | #endif |