my fork
Fork of mbed by
TARGET_LPC1549/TARGET_NXP/TARGET_LPC15XX/objects.h@97:4298809c7c9e, 2015-04-08 (annotated)
- Committer:
- filartrix
- Date:
- Wed Apr 08 14:12:53 2015 +0000
- Revision:
- 97:4298809c7c9e
- Parent:
- 86:04dd9b1680ae
First reale BlueNRG module for nucleo 401 board
Who changed what in which revision?
User | Revision | Line number | New 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 ch; |
bogdanm | 82:6473597d706e | 30 | }; |
bogdanm | 82:6473597d706e | 31 | |
bogdanm | 82:6473597d706e | 32 | struct pwmout_s { |
bogdanm | 82:6473597d706e | 33 | LPC_SCT0_Type* pwm; |
bogdanm | 82:6473597d706e | 34 | uint32_t pwm_ch; |
bogdanm | 82:6473597d706e | 35 | }; |
bogdanm | 82:6473597d706e | 36 | |
bogdanm | 82:6473597d706e | 37 | struct serial_s { |
bogdanm | 82:6473597d706e | 38 | LPC_USART0_Type *uart; |
bogdanm | 82:6473597d706e | 39 | unsigned char index; |
bogdanm | 82:6473597d706e | 40 | }; |
bogdanm | 82:6473597d706e | 41 | |
bogdanm | 82:6473597d706e | 42 | struct analogin_s { |
bogdanm | 82:6473597d706e | 43 | ADCName adc; |
bogdanm | 82:6473597d706e | 44 | }; |
bogdanm | 82:6473597d706e | 45 | |
bogdanm | 82:6473597d706e | 46 | struct dac_s { |
bogdanm | 82:6473597d706e | 47 | DACName dac; |
bogdanm | 82:6473597d706e | 48 | }; |
bogdanm | 82:6473597d706e | 49 | |
bogdanm | 82:6473597d706e | 50 | struct i2c_s { |
bogdanm | 82:6473597d706e | 51 | LPC_I2C0_Type *i2c; |
bogdanm | 82:6473597d706e | 52 | }; |
bogdanm | 82:6473597d706e | 53 | |
bogdanm | 82:6473597d706e | 54 | struct spi_s { |
bogdanm | 82:6473597d706e | 55 | LPC_SPI0_Type *spi; |
bogdanm | 82:6473597d706e | 56 | unsigned char spi_n; |
bogdanm | 82:6473597d706e | 57 | }; |
bogdanm | 82:6473597d706e | 58 | |
bogdanm | 86:04dd9b1680ae | 59 | struct can_s { |
bogdanm | 86:04dd9b1680ae | 60 | int index; |
bogdanm | 86:04dd9b1680ae | 61 | }; |
bogdanm | 86:04dd9b1680ae | 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 |