mbed library for slider v2
TARGET_KL46Z/TARGET_Freescale/TARGET_KLXX/objects.h@0:b7116bd48af6, 2016-09-14 (annotated)
- Committer:
- mturner5
- Date:
- Wed Sep 14 07:04:27 2016 +0000
- Revision:
- 0:b7116bd48af6
Tried to use the timer.
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
mturner5 | 0:b7116bd48af6 | 1 | /* mbed Microcontroller Library |
mturner5 | 0:b7116bd48af6 | 2 | * Copyright (c) 2006-2013 ARM Limited |
mturner5 | 0:b7116bd48af6 | 3 | * |
mturner5 | 0:b7116bd48af6 | 4 | * Licensed under the Apache License, Version 2.0 (the "License"); |
mturner5 | 0:b7116bd48af6 | 5 | * you may not use this file except in compliance with the License. |
mturner5 | 0:b7116bd48af6 | 6 | * You may obtain a copy of the License at |
mturner5 | 0:b7116bd48af6 | 7 | * |
mturner5 | 0:b7116bd48af6 | 8 | * http://www.apache.org/licenses/LICENSE-2.0 |
mturner5 | 0:b7116bd48af6 | 9 | * |
mturner5 | 0:b7116bd48af6 | 10 | * Unless required by applicable law or agreed to in writing, software |
mturner5 | 0:b7116bd48af6 | 11 | * distributed under the License is distributed on an "AS IS" BASIS, |
mturner5 | 0:b7116bd48af6 | 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
mturner5 | 0:b7116bd48af6 | 13 | * See the License for the specific language governing permissions and |
mturner5 | 0:b7116bd48af6 | 14 | * limitations under the License. |
mturner5 | 0:b7116bd48af6 | 15 | */ |
mturner5 | 0:b7116bd48af6 | 16 | #ifndef MBED_OBJECTS_H |
mturner5 | 0:b7116bd48af6 | 17 | #define MBED_OBJECTS_H |
mturner5 | 0:b7116bd48af6 | 18 | |
mturner5 | 0:b7116bd48af6 | 19 | #include "cmsis.h" |
mturner5 | 0:b7116bd48af6 | 20 | #include "PortNames.h" |
mturner5 | 0:b7116bd48af6 | 21 | #include "PeripheralNames.h" |
mturner5 | 0:b7116bd48af6 | 22 | #include "PinNames.h" |
mturner5 | 0:b7116bd48af6 | 23 | |
mturner5 | 0:b7116bd48af6 | 24 | #ifdef __cplusplus |
mturner5 | 0:b7116bd48af6 | 25 | extern "C" { |
mturner5 | 0:b7116bd48af6 | 26 | #endif |
mturner5 | 0:b7116bd48af6 | 27 | |
mturner5 | 0:b7116bd48af6 | 28 | #if defined(TARGET_KL46Z) |
mturner5 | 0:b7116bd48af6 | 29 | #define UARTLP_Type UART0_Type |
mturner5 | 0:b7116bd48af6 | 30 | #elif defined(TARGET_KL43Z) |
mturner5 | 0:b7116bd48af6 | 31 | #define UARTLP_Type LPUART_Type |
mturner5 | 0:b7116bd48af6 | 32 | #elif defined(TARGET_KL26Z) |
mturner5 | 0:b7116bd48af6 | 33 | #define UARTLP_Type UART0_Type |
mturner5 | 0:b7116bd48af6 | 34 | #endif |
mturner5 | 0:b7116bd48af6 | 35 | |
mturner5 | 0:b7116bd48af6 | 36 | struct gpio_irq_s { |
mturner5 | 0:b7116bd48af6 | 37 | uint32_t port; |
mturner5 | 0:b7116bd48af6 | 38 | uint32_t pin; |
mturner5 | 0:b7116bd48af6 | 39 | uint32_t ch; |
mturner5 | 0:b7116bd48af6 | 40 | }; |
mturner5 | 0:b7116bd48af6 | 41 | |
mturner5 | 0:b7116bd48af6 | 42 | struct port_s { |
mturner5 | 0:b7116bd48af6 | 43 | __IO uint32_t *reg_dir; |
mturner5 | 0:b7116bd48af6 | 44 | __IO uint32_t *reg_out; |
mturner5 | 0:b7116bd48af6 | 45 | __I uint32_t *reg_in; |
mturner5 | 0:b7116bd48af6 | 46 | PortName port; |
mturner5 | 0:b7116bd48af6 | 47 | uint32_t mask; |
mturner5 | 0:b7116bd48af6 | 48 | }; |
mturner5 | 0:b7116bd48af6 | 49 | |
mturner5 | 0:b7116bd48af6 | 50 | struct pwmout_s { |
mturner5 | 0:b7116bd48af6 | 51 | __IO uint32_t *MOD; |
mturner5 | 0:b7116bd48af6 | 52 | __IO uint32_t *CNT; |
mturner5 | 0:b7116bd48af6 | 53 | __IO uint32_t *CnV; |
mturner5 | 0:b7116bd48af6 | 54 | }; |
mturner5 | 0:b7116bd48af6 | 55 | |
mturner5 | 0:b7116bd48af6 | 56 | struct serial_s { |
mturner5 | 0:b7116bd48af6 | 57 | UARTLP_Type *uart; |
mturner5 | 0:b7116bd48af6 | 58 | int index; |
mturner5 | 0:b7116bd48af6 | 59 | }; |
mturner5 | 0:b7116bd48af6 | 60 | |
mturner5 | 0:b7116bd48af6 | 61 | struct analogin_s { |
mturner5 | 0:b7116bd48af6 | 62 | ADCName adc; |
mturner5 | 0:b7116bd48af6 | 63 | }; |
mturner5 | 0:b7116bd48af6 | 64 | |
mturner5 | 0:b7116bd48af6 | 65 | struct dac_s { |
mturner5 | 0:b7116bd48af6 | 66 | DACName dac; |
mturner5 | 0:b7116bd48af6 | 67 | }; |
mturner5 | 0:b7116bd48af6 | 68 | |
mturner5 | 0:b7116bd48af6 | 69 | struct i2c_s { |
mturner5 | 0:b7116bd48af6 | 70 | I2C_Type *i2c; |
mturner5 | 0:b7116bd48af6 | 71 | }; |
mturner5 | 0:b7116bd48af6 | 72 | |
mturner5 | 0:b7116bd48af6 | 73 | struct spi_s { |
mturner5 | 0:b7116bd48af6 | 74 | SPI_Type *spi; |
mturner5 | 0:b7116bd48af6 | 75 | }; |
mturner5 | 0:b7116bd48af6 | 76 | |
mturner5 | 0:b7116bd48af6 | 77 | #include "gpio_object.h" |
mturner5 | 0:b7116bd48af6 | 78 | |
mturner5 | 0:b7116bd48af6 | 79 | #ifdef __cplusplus |
mturner5 | 0:b7116bd48af6 | 80 | } |
mturner5 | 0:b7116bd48af6 | 81 | #endif |
mturner5 | 0:b7116bd48af6 | 82 | |
mturner5 | 0:b7116bd48af6 | 83 | #endif |