version_2.0

Dependents:   cc3000_ping_demo_try_2

Fork of mbed by mbed official

Committer:
bogdanm
Date:
Mon Apr 07 18:28:36 2014 +0100
Revision:
82:6473597d706e
Release 82 of the mbed library

Main changes:

- support for K64F
- Revisited Nordic code structure
- Test infrastructure improvements
- various bug fixes

Who changed what in which revision?

UserRevisionLine numberNew contents of line
bogdanm 82:6473597d706e 1 /* mbed Microcontroller Library
bogdanm 82:6473597d706e 2 * Copyright (c) 2006-2013 ARM Limited
bogdanm 82:6473597d706e 3 *
bogdanm 82:6473597d706e 4 * Licensed under the Apache License, Version 2.0 (the "License");
bogdanm 82:6473597d706e 5 * you may not use this file except in compliance with the License.
bogdanm 82:6473597d706e 6 * You may obtain a copy of the License at
bogdanm 82:6473597d706e 7 *
bogdanm 82:6473597d706e 8 * http://www.apache.org/licenses/LICENSE-2.0
bogdanm 82:6473597d706e 9 *
bogdanm 82:6473597d706e 10 * Unless required by applicable law or agreed to in writing, software
bogdanm 82:6473597d706e 11 * distributed under the License is distributed on an "AS IS" BASIS,
bogdanm 82:6473597d706e 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
bogdanm 82:6473597d706e 13 * See the License for the specific language governing permissions and
bogdanm 82:6473597d706e 14 * limitations under the License.
bogdanm 82:6473597d706e 15 */
bogdanm 82:6473597d706e 16 #ifndef MBED_OBJECTS_H
bogdanm 82:6473597d706e 17 #define MBED_OBJECTS_H
bogdanm 82:6473597d706e 18
bogdanm 82:6473597d706e 19 #include "cmsis.h"
bogdanm 82:6473597d706e 20 #include "PortNames.h"
bogdanm 82:6473597d706e 21 #include "PeripheralNames.h"
bogdanm 82:6473597d706e 22 #include "PinNames.h"
bogdanm 82:6473597d706e 23
bogdanm 82:6473597d706e 24 #ifdef __cplusplus
bogdanm 82:6473597d706e 25 extern "C" {
bogdanm 82:6473597d706e 26 #endif
bogdanm 82:6473597d706e 27
bogdanm 82:6473597d706e 28 struct gpio_irq_s {
bogdanm 82:6473597d706e 29 uint32_t port;
bogdanm 82:6473597d706e 30 uint32_t pin;
bogdanm 82:6473597d706e 31 uint32_t ch;
bogdanm 82:6473597d706e 32 };
bogdanm 82:6473597d706e 33
bogdanm 82:6473597d706e 34 struct port_s {
bogdanm 82:6473597d706e 35 PortName port;
bogdanm 82:6473597d706e 36 uint32_t mask;
bogdanm 82:6473597d706e 37 };
bogdanm 82:6473597d706e 38
bogdanm 82:6473597d706e 39 struct pwmout_s {
bogdanm 82:6473597d706e 40 PWMName pwm_name;
bogdanm 82:6473597d706e 41 };
bogdanm 82:6473597d706e 42
bogdanm 82:6473597d706e 43 struct serial_s {
bogdanm 82:6473597d706e 44 int index;
bogdanm 82:6473597d706e 45 };
bogdanm 82:6473597d706e 46
bogdanm 82:6473597d706e 47 struct analogin_s {
bogdanm 82:6473597d706e 48 ADCName adc;
bogdanm 82:6473597d706e 49 };
bogdanm 82:6473597d706e 50
bogdanm 82:6473597d706e 51 struct i2c_s {
bogdanm 82:6473597d706e 52 uint32_t instance;
bogdanm 82:6473597d706e 53 };
bogdanm 82:6473597d706e 54
bogdanm 82:6473597d706e 55 struct spi_s {
bogdanm 82:6473597d706e 56 uint32_t instance;
bogdanm 82:6473597d706e 57 };
bogdanm 82:6473597d706e 58
bogdanm 82:6473597d706e 59 struct dac_s {
bogdanm 82:6473597d706e 60 DACName dac;
bogdanm 82:6473597d706e 61 };
bogdanm 82:6473597d706e 62
bogdanm 82:6473597d706e 63 #include "gpio_object.h"
bogdanm 82:6473597d706e 64
bogdanm 82:6473597d706e 65 #ifdef __cplusplus
bogdanm 82:6473597d706e 66 }
bogdanm 82:6473597d706e 67 #endif
bogdanm 82:6473597d706e 68
bogdanm 82:6473597d706e 69 #endif