mbed library sources

Dependents:   Encrypted my_mbed lklk CyaSSL_DTLS_Cellular ... more

Superseded

This library was superseded by mbed-dev - https://os.mbed.com/users/mbed_official/code/mbed-dev/.

Development branch of the mbed library sources. This library is kept in synch with the latest changes from the mbed SDK and it is not guaranteed to work.

If you are looking for a stable and tested release, please import one of the official mbed library releases:

Import librarymbed

The official Mbed 2 C/C++ SDK provides the software platform and libraries to build your applications.

Committer:
mbed_official
Date:
Fri Jul 31 14:15:09 2015 +0100
Revision:
600:7d17ca308cd1
Parent:
507:d4fc7603a669
Synchronized with git revision e4cd8bbd3e05b68e5a7f466c74035a85743d45e0

Full URL: https://github.com/mbedmicro/mbed/commit/e4cd8bbd3e05b68e5a7f466c74035a85743d45e0/

Enable LPC8xx usart when configuring it

Who changed what in which revision?

UserRevisionLine numberNew contents of line
mbed_official 507:d4fc7603a669 1 /*******************************************************************************
mbed_official 507:d4fc7603a669 2 * Copyright (C) 2015 Maxim Integrated Products, Inc., All Rights Reserved.
mbed_official 507:d4fc7603a669 3 *
mbed_official 507:d4fc7603a669 4 * Permission is hereby granted, free of charge, to any person obtaining a
mbed_official 507:d4fc7603a669 5 * copy of this software and associated documentation files (the "Software"),
mbed_official 507:d4fc7603a669 6 * to deal in the Software without restriction, including without limitation
mbed_official 507:d4fc7603a669 7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
mbed_official 507:d4fc7603a669 8 * and/or sell copies of the Software, and to permit persons to whom the
mbed_official 507:d4fc7603a669 9 * Software is furnished to do so, subject to the following conditions:
mbed_official 507:d4fc7603a669 10 *
mbed_official 507:d4fc7603a669 11 * The above copyright notice and this permission notice shall be included
mbed_official 507:d4fc7603a669 12 * in all copies or substantial portions of the Software.
mbed_official 507:d4fc7603a669 13 *
mbed_official 507:d4fc7603a669 14 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
mbed_official 507:d4fc7603a669 15 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
mbed_official 507:d4fc7603a669 16 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
mbed_official 507:d4fc7603a669 17 * IN NO EVENT SHALL MAXIM INTEGRATED BE LIABLE FOR ANY CLAIM, DAMAGES
mbed_official 507:d4fc7603a669 18 * OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
mbed_official 507:d4fc7603a669 19 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
mbed_official 507:d4fc7603a669 20 * OTHER DEALINGS IN THE SOFTWARE.
mbed_official 507:d4fc7603a669 21 *
mbed_official 507:d4fc7603a669 22 * Except as contained in this notice, the name of Maxim Integrated
mbed_official 507:d4fc7603a669 23 * Products, Inc. shall not be used except as stated in the Maxim Integrated
mbed_official 507:d4fc7603a669 24 * Products, Inc. Branding Policy.
mbed_official 507:d4fc7603a669 25 *
mbed_official 507:d4fc7603a669 26 * The mere transfer of this software does not imply any licenses
mbed_official 507:d4fc7603a669 27 * of trade secrets, proprietary technology, copyrights, patents,
mbed_official 507:d4fc7603a669 28 * trademarks, maskwork rights, or any other form of intellectual
mbed_official 507:d4fc7603a669 29 * property whatsoever. Maxim Integrated Products, Inc. retains all
mbed_official 507:d4fc7603a669 30 * ownership rights.
mbed_official 507:d4fc7603a669 31 *******************************************************************************
mbed_official 507:d4fc7603a669 32 */
mbed_official 507:d4fc7603a669 33
mbed_official 507:d4fc7603a669 34 #ifndef _MXC_IOMAN_REGS_H_
mbed_official 507:d4fc7603a669 35 #define _MXC_IOMAN_REGS_H_
mbed_official 507:d4fc7603a669 36
mbed_official 507:d4fc7603a669 37 #ifdef __cplusplus
mbed_official 507:d4fc7603a669 38 extern "C" {
mbed_official 507:d4fc7603a669 39 #endif
mbed_official 507:d4fc7603a669 40
mbed_official 507:d4fc7603a669 41 #include <stdint.h>
mbed_official 507:d4fc7603a669 42
mbed_official 507:d4fc7603a669 43 /**
mbed_official 507:d4fc7603a669 44 * @file ioman_regs.h
mbed_official 507:d4fc7603a669 45 * @addtogroup ioman IO MUX Manager
mbed_official 507:d4fc7603a669 46 * @{
mbed_official 507:d4fc7603a669 47 */
mbed_official 507:d4fc7603a669 48
mbed_official 507:d4fc7603a669 49 typedef enum {
mbed_official 507:d4fc7603a669 50 /** Pin Mapping 'A' */
mbed_official 507:d4fc7603a669 51 MXC_E_IOMAN_MAPPING_A = 0,
mbed_official 507:d4fc7603a669 52 /** Pin Mapping 'B' */
mbed_official 507:d4fc7603a669 53 MXC_E_IOMAN_MAPPING_B,
mbed_official 507:d4fc7603a669 54 /** Pin Mapping 'C' */
mbed_official 507:d4fc7603a669 55 MXC_E_IOMAN_MAPPING_C,
mbed_official 507:d4fc7603a669 56 /** Pin Mapping 'D' */
mbed_official 507:d4fc7603a669 57 MXC_E_IOMAN_MAPPING_D,
mbed_official 507:d4fc7603a669 58 /** Pin Mapping 'E' */
mbed_official 507:d4fc7603a669 59 MXC_E_IOMAN_MAPPING_E,
mbed_official 507:d4fc7603a669 60 /** Pin Mapping 'F' */
mbed_official 507:d4fc7603a669 61 MXC_E_IOMAN_MAPPING_F,
mbed_official 507:d4fc7603a669 62 /** Pin Mapping 'G' */
mbed_official 507:d4fc7603a669 63 MXC_E_IOMAN_MAPPING_G,
mbed_official 507:d4fc7603a669 64 /** Pin Mapping 'H' */
mbed_official 507:d4fc7603a669 65 MXC_E_IOMAN_MAPPING_H,
mbed_official 507:d4fc7603a669 66 } ioman_mapping_t;
mbed_official 507:d4fc7603a669 67
mbed_official 507:d4fc7603a669 68 /* Offset Register Description
mbed_official 507:d4fc7603a669 69 ====== ========================================== */
mbed_official 507:d4fc7603a669 70 typedef struct {
mbed_official 507:d4fc7603a669 71 __IO uint32_t wud_req0; /* 0x0000 Wakeup Detect Mode Request Register 0 */
mbed_official 507:d4fc7603a669 72 __IO uint32_t wud_req1; /* 0x0004 Wakeup Detect Mode Request Register 1 */
mbed_official 507:d4fc7603a669 73 __IO uint32_t wud_ack0; /* 0x0008 Wakeup Detect Mode Acknowledge Register 0 */
mbed_official 507:d4fc7603a669 74 __IO uint32_t wud_ack1; /* 0x000C Wakeup Detect Mode Acknowledge Register 1 */
mbed_official 507:d4fc7603a669 75 __IO uint32_t ali_req0; /* 0x0010 Analog Input Request Register 0 */
mbed_official 507:d4fc7603a669 76 __IO uint32_t ali_req1; /* 0x0014 Analog Input Request Register 1 */
mbed_official 507:d4fc7603a669 77 __IO uint32_t ali_ack0; /* 0x0018 Analog Input Acknowledge Register 0 */
mbed_official 507:d4fc7603a669 78 __IO uint32_t ali_ack1; /* 0x001C Analog Input Acknowledge Register 1 */
mbed_official 507:d4fc7603a669 79 __IO uint32_t spi0_req; /* 0x0020 SPI0 I/O Mode Request */
mbed_official 507:d4fc7603a669 80 __IO uint32_t spi0_ack; /* 0x0024 SPI0 I/O Mode Acknowledge */
mbed_official 507:d4fc7603a669 81 __IO uint32_t spi1_req; /* 0x0028 SPI1 I/O Mode Request */
mbed_official 507:d4fc7603a669 82 __IO uint32_t spi1_ack; /* 0x002C SPI1 I/O Mode Acknowledge */
mbed_official 507:d4fc7603a669 83 __IO uint32_t spi2_req; /* 0x0030 SPI2 I/O Mode Request */
mbed_official 507:d4fc7603a669 84 __IO uint32_t spi2_ack; /* 0x0034 SPI2 I/O Mode Acknowledge */
mbed_official 507:d4fc7603a669 85 __IO uint32_t uart0_req; /* 0x0038 UART0 I/O Mode Request */
mbed_official 507:d4fc7603a669 86 __IO uint32_t uart0_ack; /* 0x003C UART0 I/O Mode Acknowledge */
mbed_official 507:d4fc7603a669 87 __IO uint32_t uart1_req; /* 0x0040 UART1 I/O Mode Request */
mbed_official 507:d4fc7603a669 88 __IO uint32_t uart1_ack; /* 0x0044 UART1 I/O Mode Acknowledge */
mbed_official 507:d4fc7603a669 89 __IO uint32_t i2cm0_req; /* 0x0048 I2C Master 0 I/O Request */
mbed_official 507:d4fc7603a669 90 __IO uint32_t i2cm0_ack; /* 0x004C I2C Master 0 I/O Acknowledge */
mbed_official 507:d4fc7603a669 91 __IO uint32_t i2cs0_req; /* 0x0050 I2C Slave 0 I/O Request */
mbed_official 507:d4fc7603a669 92 __IO uint32_t i2s0_ack; /* 0x0054 I2C Slave 0 I/O Acknowledge */
mbed_official 507:d4fc7603a669 93 __IO uint32_t lcd_com_req; /* 0x0058 LCD COM Driver I/O Request */
mbed_official 507:d4fc7603a669 94 __IO uint32_t lcd_com_ack; /* 0x005C LCD COM Driver I/O Acknowledge */
mbed_official 507:d4fc7603a669 95 __IO uint32_t lcd_seg_req0; /* 0x0060 LCD SEG Driver I/O Request Register 0 */
mbed_official 507:d4fc7603a669 96 __IO uint32_t lcd_seg_req1; /* 0x0064 LCD SEG Driver I/O Request Register 1 */
mbed_official 507:d4fc7603a669 97 __IO uint32_t lcd_seg_ack0; /* 0x0068 LCD SEG Driver I/O Acknowledge Register 0 */
mbed_official 507:d4fc7603a669 98 __IO uint32_t lcd_seg_ack1; /* 0x006C LCD SEG Driver I/O Acknowledge Register 1 */
mbed_official 507:d4fc7603a669 99 __IO uint32_t crnt_req; /* 0x0070 Current Drive I/O Request Register */
mbed_official 507:d4fc7603a669 100 __IO uint32_t io_crnt_ack; /* 0x0074 Current Drive I/O Acknowledge Register */
mbed_official 507:d4fc7603a669 101 __IO uint32_t crnt_mode; /* 0x0078 Current Drive I/O Mode Control */
mbed_official 507:d4fc7603a669 102 __IO uint32_t ali_connect0; /* 0x007C Analog I/O Connection Control Register 0 */
mbed_official 507:d4fc7603a669 103 __IO uint32_t ali_connect1; /* 0x0080 Analog I/O Connection Control Register 1 */
mbed_official 507:d4fc7603a669 104 __IO uint32_t i2cm1_req; /* 0x0084 I2C Master 1 I/O Request */
mbed_official 507:d4fc7603a669 105 __IO uint32_t i2cm1_ack; /* 0x0088 I2C Master 1 I/O Acknowledge */
mbed_official 507:d4fc7603a669 106 __IO uint32_t padx_control; /* 0x008C PADX Control */
mbed_official 507:d4fc7603a669 107 } mxc_ioman_regs_t;
mbed_official 507:d4fc7603a669 108
mbed_official 507:d4fc7603a669 109
mbed_official 507:d4fc7603a669 110 /*
mbed_official 507:d4fc7603a669 111 Register offsets for module IOMAN.
mbed_official 507:d4fc7603a669 112 */
mbed_official 507:d4fc7603a669 113 #define MXC_R_IOMAN_OFFS_WUD_REQ0 ((uint32_t)0x00000000UL)
mbed_official 507:d4fc7603a669 114 #define MXC_R_IOMAN_OFFS_WUD_REQ1 ((uint32_t)0x00000004UL)
mbed_official 507:d4fc7603a669 115 #define MXC_R_IOMAN_OFFS_WUD_ACK0 ((uint32_t)0x00000008UL)
mbed_official 507:d4fc7603a669 116 #define MXC_R_IOMAN_OFFS_WUD_ACK1 ((uint32_t)0x0000000CUL)
mbed_official 507:d4fc7603a669 117 #define MXC_R_IOMAN_OFFS_ALI_REQ0 ((uint32_t)0x00000010UL)
mbed_official 507:d4fc7603a669 118 #define MXC_R_IOMAN_OFFS_ALI_REQ1 ((uint32_t)0x00000014UL)
mbed_official 507:d4fc7603a669 119 #define MXC_R_IOMAN_OFFS_ALI_ACK0 ((uint32_t)0x00000018UL)
mbed_official 507:d4fc7603a669 120 #define MXC_R_IOMAN_OFFS_ALI_ACK1 ((uint32_t)0x0000001CUL)
mbed_official 507:d4fc7603a669 121 #define MXC_R_IOMAN_OFFS_SPI0_REQ ((uint32_t)0x00000020UL)
mbed_official 507:d4fc7603a669 122 #define MXC_R_IOMAN_OFFS_SPI0_ACK ((uint32_t)0x00000024UL)
mbed_official 507:d4fc7603a669 123 #define MXC_R_IOMAN_OFFS_SPI1_REQ ((uint32_t)0x00000028UL)
mbed_official 507:d4fc7603a669 124 #define MXC_R_IOMAN_OFFS_SPI1_ACK ((uint32_t)0x0000002CUL)
mbed_official 507:d4fc7603a669 125 #define MXC_R_IOMAN_OFFS_SPI2_REQ ((uint32_t)0x00000030UL)
mbed_official 507:d4fc7603a669 126 #define MXC_R_IOMAN_OFFS_SPI2_ACK ((uint32_t)0x00000034UL)
mbed_official 507:d4fc7603a669 127 #define MXC_R_IOMAN_OFFS_UART0_REQ ((uint32_t)0x00000038UL)
mbed_official 507:d4fc7603a669 128 #define MXC_R_IOMAN_OFFS_UART0_ACK ((uint32_t)0x0000003CUL)
mbed_official 507:d4fc7603a669 129 #define MXC_R_IOMAN_OFFS_UART1_REQ ((uint32_t)0x00000040UL)
mbed_official 507:d4fc7603a669 130 #define MXC_R_IOMAN_OFFS_UART1_ACK ((uint32_t)0x00000044UL)
mbed_official 507:d4fc7603a669 131 #define MXC_R_IOMAN_OFFS_I2CM0_REQ ((uint32_t)0x00000048UL)
mbed_official 507:d4fc7603a669 132 #define MXC_R_IOMAN_OFFS_I2CM0_ACK ((uint32_t)0x0000004CUL)
mbed_official 507:d4fc7603a669 133 #define MXC_R_IOMAN_OFFS_I2CS0_REQ ((uint32_t)0x00000050UL)
mbed_official 507:d4fc7603a669 134 #define MXC_R_IOMAN_OFFS_I2SC0_ACK ((uint32_t)0x00000054UL)
mbed_official 507:d4fc7603a669 135 #define MXC_R_IOMAN_OFFS_LCD_COM_REQ ((uint32_t)0x00000058UL)
mbed_official 507:d4fc7603a669 136 #define MXC_R_IOMAN_OFFS_LCD_COM_ACK ((uint32_t)0x0000005CUL)
mbed_official 507:d4fc7603a669 137 #define MXC_R_IOMAN_OFFS_LCD_SEG_REQ0 ((uint32_t)0x00000060UL)
mbed_official 507:d4fc7603a669 138 #define MXC_R_IOMAN_OFFS_LCD_SEG_REQ1 ((uint32_t)0x00000064UL)
mbed_official 507:d4fc7603a669 139 #define MXC_R_IOMAN_OFFS_LCD_SEG_ACK0 ((uint32_t)0x00000068UL)
mbed_official 507:d4fc7603a669 140 #define MXC_R_IOMAN_OFFS_LCD_SEG_ACK1 ((uint32_t)0x0000006CUL)
mbed_official 507:d4fc7603a669 141 #define MXC_R_IOMAN_OFFS_IO_CRNT_REQ ((uint32_t)0x00000070UL)
mbed_official 507:d4fc7603a669 142 #define MXC_R_IOMAN_OFFS_IO_CRNT_ACK ((uint32_t)0x00000074UL)
mbed_official 507:d4fc7603a669 143 #define MXC_R_IOMAN_OFFS_IO_CRNT_MODE ((uint32_t)0x00000078UL)
mbed_official 507:d4fc7603a669 144 #define MXC_R_IOMAN_OFFS_ALI_CONNECT0 ((uint32_t)0x0000007CUL)
mbed_official 507:d4fc7603a669 145 #define MXC_R_IOMAN_OFFS_ALI_CONNECT1 ((uint32_t)0x00000080UL)
mbed_official 507:d4fc7603a669 146 #define MXC_R_IOMAN_OFFS_I2CM1_REQ ((uint32_t)0x00000084UL)
mbed_official 507:d4fc7603a669 147 #define MXC_R_IOMAN_OFFS_I2CM1_ACK ((uint32_t)0x00000088UL)
mbed_official 507:d4fc7603a669 148 #define MXC_R_IOMAN_OFFS_PADX_CONTROL ((uint32_t)0x0000008CUL)
mbed_official 507:d4fc7603a669 149
mbed_official 507:d4fc7603a669 150
mbed_official 507:d4fc7603a669 151 /*
mbed_official 507:d4fc7603a669 152 Field positions and masks for module IOMAN.
mbed_official 507:d4fc7603a669 153 */
mbed_official 507:d4fc7603a669 154 #define MXC_F_IOMAN_WUD_REQ0_PORT0_POS 0
mbed_official 507:d4fc7603a669 155 #define MXC_F_IOMAN_WUD_REQ0_PORT0 ((uint32_t)(0x000000FFUL << MXC_F_IOMAN_WUD_REQ0_PORT0_POS))
mbed_official 507:d4fc7603a669 156 #define MXC_F_IOMAN_WUD_REQ0_PORT1_POS 8
mbed_official 507:d4fc7603a669 157 #define MXC_F_IOMAN_WUD_REQ0_PORT1 ((uint32_t)(0x000000FFUL << MXC_F_IOMAN_WUD_REQ0_PORT1_POS))
mbed_official 507:d4fc7603a669 158 #define MXC_F_IOMAN_WUD_REQ0_PORT2_POS 16
mbed_official 507:d4fc7603a669 159 #define MXC_F_IOMAN_WUD_REQ0_PORT2 ((uint32_t)(0x000000FFUL << MXC_F_IOMAN_WUD_REQ0_PORT2_POS))
mbed_official 507:d4fc7603a669 160 #define MXC_F_IOMAN_WUD_REQ0_PORT3_POS 24
mbed_official 507:d4fc7603a669 161 #define MXC_F_IOMAN_WUD_REQ0_PORT3 ((uint32_t)(0x000000FFUL << MXC_F_IOMAN_WUD_REQ0_PORT3_POS))
mbed_official 507:d4fc7603a669 162
mbed_official 507:d4fc7603a669 163 #define MXC_F_IOMAN_WUD_REQ1_PORT4_POS 0
mbed_official 507:d4fc7603a669 164 #define MXC_F_IOMAN_WUD_REQ1_PORT4 ((uint32_t)(0x000000FFUL << MXC_F_IOMAN_WUD_REQ1_PORT4_POS))
mbed_official 507:d4fc7603a669 165 #define MXC_F_IOMAN_WUD_REQ1_PORT5_POS 8
mbed_official 507:d4fc7603a669 166 #define MXC_F_IOMAN_WUD_REQ1_PORT5 ((uint32_t)(0x000000FFUL << MXC_F_IOMAN_WUD_REQ1_PORT5_POS))
mbed_official 507:d4fc7603a669 167 #define MXC_F_IOMAN_WUD_REQ1_PORT6_POS 16
mbed_official 507:d4fc7603a669 168 #define MXC_F_IOMAN_WUD_REQ1_PORT6 ((uint32_t)(0x000000FFUL << MXC_F_IOMAN_WUD_REQ1_PORT6_POS))
mbed_official 507:d4fc7603a669 169 #define MXC_F_IOMAN_WUD_REQ1_PORT7_POS 24
mbed_official 507:d4fc7603a669 170 #define MXC_F_IOMAN_WUD_REQ1_PORT7 ((uint32_t)(0x000000FFUL << MXC_F_IOMAN_WUD_REQ1_PORT7_POS))
mbed_official 507:d4fc7603a669 171
mbed_official 507:d4fc7603a669 172 #define MXC_F_IOMAN_WUD_ACK0_PORT0_POS 0
mbed_official 507:d4fc7603a669 173 #define MXC_F_IOMAN_WUD_ACK0_PORT0 ((uint32_t)(0x000000FFUL << MXC_F_IOMAN_WUD_ACK0_PORT0_POS))
mbed_official 507:d4fc7603a669 174 #define MXC_F_IOMAN_WUD_ACK0_PORT1_POS 8
mbed_official 507:d4fc7603a669 175 #define MXC_F_IOMAN_WUD_ACK0_PORT1 ((uint32_t)(0x000000FFUL << MXC_F_IOMAN_WUD_ACK0_PORT1_POS))
mbed_official 507:d4fc7603a669 176 #define MXC_F_IOMAN_WUD_ACK0_PORT2_POS 16
mbed_official 507:d4fc7603a669 177 #define MXC_F_IOMAN_WUD_ACK0_PORT2 ((uint32_t)(0x000000FFUL << MXC_F_IOMAN_WUD_ACK0_PORT2_POS))
mbed_official 507:d4fc7603a669 178 #define MXC_F_IOMAN_WUD_ACK0_PORT3_POS 24
mbed_official 507:d4fc7603a669 179 #define MXC_F_IOMAN_WUD_ACK0_PORT3 ((uint32_t)(0x000000FFUL << MXC_F_IOMAN_WUD_ACK0_PORT3_POS))
mbed_official 507:d4fc7603a669 180
mbed_official 507:d4fc7603a669 181 #define MXC_F_IOMAN_WUD_ACK1_PORT4_POS 0
mbed_official 507:d4fc7603a669 182 #define MXC_F_IOMAN_WUD_ACK1_PORT4 ((uint32_t)(0x000000FFUL << MXC_F_IOMAN_WUD_ACK1_PORT4_POS))
mbed_official 507:d4fc7603a669 183 #define MXC_F_IOMAN_WUD_ACK1_PORT5_POS 8
mbed_official 507:d4fc7603a669 184 #define MXC_F_IOMAN_WUD_ACK1_PORT5 ((uint32_t)(0x000000FFUL << MXC_F_IOMAN_WUD_ACK1_PORT5_POS))
mbed_official 507:d4fc7603a669 185 #define MXC_F_IOMAN_WUD_ACK1_PORT6_POS 16
mbed_official 507:d4fc7603a669 186 #define MXC_F_IOMAN_WUD_ACK1_PORT6 ((uint32_t)(0x000000FFUL << MXC_F_IOMAN_WUD_ACK1_PORT6_POS))
mbed_official 507:d4fc7603a669 187 #define MXC_F_IOMAN_WUD_ACK1_PORT7_POS 24
mbed_official 507:d4fc7603a669 188 #define MXC_F_IOMAN_WUD_ACK1_PORT7 ((uint32_t)(0x000000FFUL << MXC_F_IOMAN_WUD_ACK1_PORT7_POS))
mbed_official 507:d4fc7603a669 189
mbed_official 507:d4fc7603a669 190 #define MXC_F_IOMAN_ALI_REQ0_PORT0_POS 0
mbed_official 507:d4fc7603a669 191 #define MXC_F_IOMAN_ALI_REQ0_PORT0 ((uint32_t)(0x000000FFUL << MXC_F_IOMAN_ALI_REQ0_PORT0_POS))
mbed_official 507:d4fc7603a669 192 #define MXC_F_IOMAN_ALI_REQ0_PORT1_POS 8
mbed_official 507:d4fc7603a669 193 #define MXC_F_IOMAN_ALI_REQ0_PORT1 ((uint32_t)(0x000000FFUL << MXC_F_IOMAN_ALI_REQ0_PORT1_POS))
mbed_official 507:d4fc7603a669 194 #define MXC_F_IOMAN_ALI_REQ0_PORT2_POS 16
mbed_official 507:d4fc7603a669 195 #define MXC_F_IOMAN_ALI_REQ0_PORT2 ((uint32_t)(0x000000FFUL << MXC_F_IOMAN_ALI_REQ0_PORT2_POS))
mbed_official 507:d4fc7603a669 196 #define MXC_F_IOMAN_ALI_REQ0_PORT3_POS 24
mbed_official 507:d4fc7603a669 197 #define MXC_F_IOMAN_ALI_REQ0_PORT3 ((uint32_t)(0x000000FFUL << MXC_F_IOMAN_ALI_REQ0_PORT3_POS))
mbed_official 507:d4fc7603a669 198
mbed_official 507:d4fc7603a669 199 #define MXC_F_IOMAN_ALI_REQ1_PORT4_POS 0
mbed_official 507:d4fc7603a669 200 #define MXC_F_IOMAN_ALI_REQ1_PORT4 ((uint32_t)(0x000000FFUL << MXC_F_IOMAN_ALI_REQ1_PORT4_POS))
mbed_official 507:d4fc7603a669 201 #define MXC_F_IOMAN_ALI_REQ1_PORT5_POS 8
mbed_official 507:d4fc7603a669 202 #define MXC_F_IOMAN_ALI_REQ1_PORT5 ((uint32_t)(0x000000FFUL << MXC_F_IOMAN_ALI_REQ1_PORT5_POS))
mbed_official 507:d4fc7603a669 203 #define MXC_F_IOMAN_ALI_REQ1_PORT6_POS 16
mbed_official 507:d4fc7603a669 204 #define MXC_F_IOMAN_ALI_REQ1_PORT6 ((uint32_t)(0x000000FFUL << MXC_F_IOMAN_ALI_REQ1_PORT6_POS))
mbed_official 507:d4fc7603a669 205 #define MXC_F_IOMAN_ALI_REQ1_PORT7_POS 24
mbed_official 507:d4fc7603a669 206 #define MXC_F_IOMAN_ALI_REQ1_PORT7 ((uint32_t)(0x000000FFUL << MXC_F_IOMAN_ALI_REQ1_PORT7_POS))
mbed_official 507:d4fc7603a669 207
mbed_official 507:d4fc7603a669 208 #define MXC_F_IOMAN_ALI_ACK0_PORT0_POS 0
mbed_official 507:d4fc7603a669 209 #define MXC_F_IOMAN_ALI_ACK0_PORT0 ((uint32_t)(0x000000FFUL << MXC_F_IOMAN_ALI_ACK0_PORT0_POS))
mbed_official 507:d4fc7603a669 210 #define MXC_F_IOMAN_ALI_ACK0_PORT1_POS 8
mbed_official 507:d4fc7603a669 211 #define MXC_F_IOMAN_ALI_ACK0_PORT1 ((uint32_t)(0x000000FFUL << MXC_F_IOMAN_ALI_ACK0_PORT1_POS))
mbed_official 507:d4fc7603a669 212 #define MXC_F_IOMAN_ALI_ACK0_PORT2_POS 16
mbed_official 507:d4fc7603a669 213 #define MXC_F_IOMAN_ALI_ACK0_PORT2 ((uint32_t)(0x000000FFUL << MXC_F_IOMAN_ALI_ACK0_PORT2_POS))
mbed_official 507:d4fc7603a669 214 #define MXC_F_IOMAN_ALI_ACK0_PORT3_POS 24
mbed_official 507:d4fc7603a669 215 #define MXC_F_IOMAN_ALI_ACK0_PORT3 ((uint32_t)(0x000000FFUL << MXC_F_IOMAN_ALI_ACK0_PORT3_POS))
mbed_official 507:d4fc7603a669 216
mbed_official 507:d4fc7603a669 217 #define MXC_F_IOMAN_ALI_ACK1_PORT4_POS 0
mbed_official 507:d4fc7603a669 218 #define MXC_F_IOMAN_ALI_ACK1_PORT4 ((uint32_t)(0x000000FFUL << MXC_F_IOMAN_ALI_ACK1_PORT4_POS))
mbed_official 507:d4fc7603a669 219 #define MXC_F_IOMAN_ALI_ACK1_PORT5_POS 8
mbed_official 507:d4fc7603a669 220 #define MXC_F_IOMAN_ALI_ACK1_PORT5 ((uint32_t)(0x000000FFUL << MXC_F_IOMAN_ALI_ACK1_PORT5_POS))
mbed_official 507:d4fc7603a669 221 #define MXC_F_IOMAN_ALI_ACK1_PORT6_POS 16
mbed_official 507:d4fc7603a669 222 #define MXC_F_IOMAN_ALI_ACK1_PORT6 ((uint32_t)(0x000000FFUL << MXC_F_IOMAN_ALI_ACK1_PORT6_POS))
mbed_official 507:d4fc7603a669 223 #define MXC_F_IOMAN_ALI_ACK1_PORT7_POS 24
mbed_official 507:d4fc7603a669 224 #define MXC_F_IOMAN_ALI_ACK1_PORT7 ((uint32_t)(0x000000FFUL << MXC_F_IOMAN_ALI_ACK1_PORT7_POS))
mbed_official 507:d4fc7603a669 225
mbed_official 507:d4fc7603a669 226 #define MXC_F_IOMAN_SPI_MAPPING_POS 0
mbed_official 507:d4fc7603a669 227 #define MXC_F_IOMAN_SPI_MAPPING ((uint32_t)(0x00000003UL << MXC_F_IOMAN_SPI_MAPPING_POS))
mbed_official 507:d4fc7603a669 228 #define MXC_F_IOMAN_SPI_CORE_IO_POS 4
mbed_official 507:d4fc7603a669 229 #define MXC_F_IOMAN_SPI_CORE_IO ((uint32_t)(0x00000001UL << MXC_F_IOMAN_SPI_CORE_IO_POS))
mbed_official 507:d4fc7603a669 230 #define MXC_F_IOMAN_SPI_SS0_IO_POS 8
mbed_official 507:d4fc7603a669 231 #define MXC_F_IOMAN_SPI_SS0_IO ((uint32_t)(0x00000001UL << MXC_F_IOMAN_SPI_SS0_IO_POS))
mbed_official 507:d4fc7603a669 232 #define MXC_F_IOMAN_SPI_SS1_IO_POS 9
mbed_official 507:d4fc7603a669 233 #define MXC_F_IOMAN_SPI_SS1_IO ((uint32_t)(0x00000001UL << MXC_F_IOMAN_SPI_SS1_IO_POS))
mbed_official 507:d4fc7603a669 234 #define MXC_F_IOMAN_SPI_SS2_IO_POS 10
mbed_official 507:d4fc7603a669 235 #define MXC_F_IOMAN_SPI_SS2_IO ((uint32_t)(0x00000001UL << MXC_F_IOMAN_SPI_SS2_IO_POS))
mbed_official 507:d4fc7603a669 236 #define MXC_F_IOMAN_SPI_SS3_IO_POS 11
mbed_official 507:d4fc7603a669 237 #define MXC_F_IOMAN_SPI_SS3_IO ((uint32_t)(0x00000001UL << MXC_F_IOMAN_SPI_SS3_IO_POS))
mbed_official 507:d4fc7603a669 238 #define MXC_F_IOMAN_SPI_SS4_IO_POS 12
mbed_official 507:d4fc7603a669 239 #define MXC_F_IOMAN_SPI_SS4_IO ((uint32_t)(0x00000001UL << MXC_F_IOMAN_SPI_SS4_IO_POS))
mbed_official 507:d4fc7603a669 240 #define MXC_F_IOMAN_SPI_SR0_IO_POS 16
mbed_official 507:d4fc7603a669 241 #define MXC_F_IOMAN_SPI_SR0_IO ((uint32_t)(0x00000001UL << MXC_F_IOMAN_SPI_SR0_IO_POS))
mbed_official 507:d4fc7603a669 242 #define MXC_F_IOMAN_SPI_SR1_IO_POS 17
mbed_official 507:d4fc7603a669 243 #define MXC_F_IOMAN_SPI_SR1_IO ((uint32_t)(0x00000001UL << MXC_F_IOMAN_SPI_SR1_IO_POS))
mbed_official 507:d4fc7603a669 244 #define MXC_F_IOMAN_SPI_QUAD_IO_POS 20
mbed_official 507:d4fc7603a669 245 #define MXC_F_IOMAN_SPI_QUAD_IO ((uint32_t)(0x00000001UL << MXC_F_IOMAN_SPI_QUAD_IO_POS))
mbed_official 507:d4fc7603a669 246 #define MXC_F_IOMAN_SPI_FAST_MODE_POS 24
mbed_official 507:d4fc7603a669 247 #define MXC_F_IOMAN_SPI_FAST_MODE ((uint32_t)(0x00000001UL << MXC_F_IOMAN_SPI_FAST_MODE_POS))
mbed_official 507:d4fc7603a669 248
mbed_official 507:d4fc7603a669 249 #define MXC_F_IOMAN_UART_MAPPING_POS 0
mbed_official 507:d4fc7603a669 250 #define MXC_F_IOMAN_UART_MAPPING ((uint32_t)(0x00000003UL << MXC_F_IOMAN_UART_MAPPING_POS))
mbed_official 507:d4fc7603a669 251 #define MXC_F_IOMAN_UART_CORE_IO_POS 4
mbed_official 507:d4fc7603a669 252 #define MXC_F_IOMAN_UART_CORE_IO ((uint32_t)(0x00000001UL << MXC_F_IOMAN_UART_CORE_IO_POS))
mbed_official 507:d4fc7603a669 253 #define MXC_F_IOMAN_UART_CTS_IO_POS 5
mbed_official 507:d4fc7603a669 254 #define MXC_F_IOMAN_UART_CTS_IO ((uint32_t)(0x00000001UL << MXC_F_IOMAN_UART_CTS_IO_POS))
mbed_official 507:d4fc7603a669 255 #define MXC_F_IOMAN_UART_RTS_IO_POS 6
mbed_official 507:d4fc7603a669 256 #define MXC_F_IOMAN_UART_RTS_IO ((uint32_t)(0x00000001UL << MXC_F_IOMAN_UART_RTS_IO_POS))
mbed_official 507:d4fc7603a669 257
mbed_official 507:d4fc7603a669 258 #define MXC_F_IOMAN_I2CM_MAPPING_POS 0
mbed_official 507:d4fc7603a669 259 #define MXC_F_IOMAN_I2CM_MAPPING ((uint32_t)(0x00000003UL << MXC_F_IOMAN_I2CM_MAPPING_POS))
mbed_official 507:d4fc7603a669 260 #define MXC_F_IOMAN_I2CM_CORE_IO_POS 4
mbed_official 507:d4fc7603a669 261 #define MXC_F_IOMAN_I2CM_CORE_IO ((uint32_t)(0x00000001UL << MXC_F_IOMAN_I2CM_CORE_IO_POS))
mbed_official 507:d4fc7603a669 262
mbed_official 507:d4fc7603a669 263 #define MXC_F_IOMAN_I2CS_MAPPING_POS 0
mbed_official 507:d4fc7603a669 264 #define MXC_F_IOMAN_I2CS_MAPPING ((uint32_t)(0x00000003UL << MXC_F_IOMAN_I2CS_MAPPING_POS))
mbed_official 507:d4fc7603a669 265 #define MXC_F_IOMAN_I2CS_CORE_IO_POS 4
mbed_official 507:d4fc7603a669 266 #define MXC_F_IOMAN_I2CS_CORE_IO ((uint32_t)(0x00000001UL << MXC_F_IOMAN_I2CS_CORE_IO_POS))
mbed_official 507:d4fc7603a669 267
mbed_official 507:d4fc7603a669 268 #define MXC_F_IOMAN_LCD_COM_REQ_COM_IO_POS 0
mbed_official 507:d4fc7603a669 269 #define MXC_F_IOMAN_LCD_COM_REQ_COM_IO ((uint32_t)(0x00000001UL << MXC_F_IOMAN_LCD_COM_REQ_COM_IO_POS))
mbed_official 507:d4fc7603a669 270
mbed_official 507:d4fc7603a669 271 #define MXC_F_IOMAN_LCD_COM_ACK_COM_IO_POS 0
mbed_official 507:d4fc7603a669 272 #define MXC_F_IOMAN_LCD_COM_ACK_COM_IO ((uint32_t)(0x00000001UL << MXC_F_IOMAN_LCD_COM_ACK_COM_IO_POS))
mbed_official 507:d4fc7603a669 273
mbed_official 507:d4fc7603a669 274 #define MXC_F_IOMAN_LCD_SEG_REQ0_IO_REQ_24_POS 0
mbed_official 507:d4fc7603a669 275 #define MXC_F_IOMAN_LCD_SEG_REQ0_IO_REQ_24 ((uint32_t)(0x00000001UL << MXC_F_IOMAN_LCD_SEG_REQ0_IO_REQ_24_POS))
mbed_official 507:d4fc7603a669 276 #define MXC_F_IOMAN_LCD_SEG_REQ0_IO_REQ_25_POS 1
mbed_official 507:d4fc7603a669 277 #define MXC_F_IOMAN_LCD_SEG_REQ0_IO_REQ_25 ((uint32_t)(0x00000001UL << MXC_F_IOMAN_LCD_SEG_REQ0_IO_REQ_25_POS))
mbed_official 507:d4fc7603a669 278 #define MXC_F_IOMAN_LCD_SEG_REQ0_IO_REQ_26_POS 2
mbed_official 507:d4fc7603a669 279 #define MXC_F_IOMAN_LCD_SEG_REQ0_IO_REQ_26 ((uint32_t)(0x00000001UL << MXC_F_IOMAN_LCD_SEG_REQ0_IO_REQ_26_POS))
mbed_official 507:d4fc7603a669 280 #define MXC_F_IOMAN_LCD_SEG_REQ0_IO_REQ_27_POS 3
mbed_official 507:d4fc7603a669 281 #define MXC_F_IOMAN_LCD_SEG_REQ0_IO_REQ_27 ((uint32_t)(0x00000001UL << MXC_F_IOMAN_LCD_SEG_REQ0_IO_REQ_27_POS))
mbed_official 507:d4fc7603a669 282 #define MXC_F_IOMAN_LCD_SEG_REQ0_IO_REQ_28_POS 4
mbed_official 507:d4fc7603a669 283 #define MXC_F_IOMAN_LCD_SEG_REQ0_IO_REQ_28 ((uint32_t)(0x00000001UL << MXC_F_IOMAN_LCD_SEG_REQ0_IO_REQ_28_POS))
mbed_official 507:d4fc7603a669 284 #define MXC_F_IOMAN_LCD_SEG_REQ0_IO_REQ_29_POS 5
mbed_official 507:d4fc7603a669 285 #define MXC_F_IOMAN_LCD_SEG_REQ0_IO_REQ_29 ((uint32_t)(0x00000001UL << MXC_F_IOMAN_LCD_SEG_REQ0_IO_REQ_29_POS))
mbed_official 507:d4fc7603a669 286 #define MXC_F_IOMAN_LCD_SEG_REQ0_IO_REQ_30_POS 6
mbed_official 507:d4fc7603a669 287 #define MXC_F_IOMAN_LCD_SEG_REQ0_IO_REQ_30 ((uint32_t)(0x00000001UL << MXC_F_IOMAN_LCD_SEG_REQ0_IO_REQ_30_POS))
mbed_official 507:d4fc7603a669 288 #define MXC_F_IOMAN_LCD_SEG_REQ0_IO_REQ_31_POS 7
mbed_official 507:d4fc7603a669 289 #define MXC_F_IOMAN_LCD_SEG_REQ0_IO_REQ_31 ((uint32_t)(0x00000001UL << MXC_F_IOMAN_LCD_SEG_REQ0_IO_REQ_31_POS))
mbed_official 507:d4fc7603a669 290 #define MXC_F_IOMAN_LCD_SEG_REQ0_IO_REQ_32_POS 8
mbed_official 507:d4fc7603a669 291 #define MXC_F_IOMAN_LCD_SEG_REQ0_IO_REQ_32 ((uint32_t)(0x00000001UL << MXC_F_IOMAN_LCD_SEG_REQ0_IO_REQ_32_POS))
mbed_official 507:d4fc7603a669 292 #define MXC_F_IOMAN_LCD_SEG_REQ0_IO_REQ_33_POS 9
mbed_official 507:d4fc7603a669 293 #define MXC_F_IOMAN_LCD_SEG_REQ0_IO_REQ_33 ((uint32_t)(0x00000001UL << MXC_F_IOMAN_LCD_SEG_REQ0_IO_REQ_33_POS))
mbed_official 507:d4fc7603a669 294 #define MXC_F_IOMAN_LCD_SEG_REQ0_IO_REQ_34_POS 10
mbed_official 507:d4fc7603a669 295 #define MXC_F_IOMAN_LCD_SEG_REQ0_IO_REQ_34 ((uint32_t)(0x00000001UL << MXC_F_IOMAN_LCD_SEG_REQ0_IO_REQ_34_POS))
mbed_official 507:d4fc7603a669 296 #define MXC_F_IOMAN_LCD_SEG_REQ0_IO_REQ_35_POS 11
mbed_official 507:d4fc7603a669 297 #define MXC_F_IOMAN_LCD_SEG_REQ0_IO_REQ_35 ((uint32_t)(0x00000001UL << MXC_F_IOMAN_LCD_SEG_REQ0_IO_REQ_35_POS))
mbed_official 507:d4fc7603a669 298 #define MXC_F_IOMAN_LCD_SEG_REQ0_IO_REQ_36_POS 12
mbed_official 507:d4fc7603a669 299 #define MXC_F_IOMAN_LCD_SEG_REQ0_IO_REQ_36 ((uint32_t)(0x00000001UL << MXC_F_IOMAN_LCD_SEG_REQ0_IO_REQ_36_POS))
mbed_official 507:d4fc7603a669 300 #define MXC_F_IOMAN_LCD_SEG_REQ0_IO_REQ_37_POS 13
mbed_official 507:d4fc7603a669 301 #define MXC_F_IOMAN_LCD_SEG_REQ0_IO_REQ_37 ((uint32_t)(0x00000001UL << MXC_F_IOMAN_LCD_SEG_REQ0_IO_REQ_37_POS))
mbed_official 507:d4fc7603a669 302 #define MXC_F_IOMAN_LCD_SEG_REQ0_IO_REQ_38_POS 14
mbed_official 507:d4fc7603a669 303 #define MXC_F_IOMAN_LCD_SEG_REQ0_IO_REQ_38 ((uint32_t)(0x00000001UL << MXC_F_IOMAN_LCD_SEG_REQ0_IO_REQ_38_POS))
mbed_official 507:d4fc7603a669 304 #define MXC_F_IOMAN_LCD_SEG_REQ0_IO_REQ_39_POS 15
mbed_official 507:d4fc7603a669 305 #define MXC_F_IOMAN_LCD_SEG_REQ0_IO_REQ_39 ((uint32_t)(0x00000001UL << MXC_F_IOMAN_LCD_SEG_REQ0_IO_REQ_39_POS))
mbed_official 507:d4fc7603a669 306 #define MXC_F_IOMAN_LCD_SEG_REQ0_IO_REQ_40_POS 16
mbed_official 507:d4fc7603a669 307 #define MXC_F_IOMAN_LCD_SEG_REQ0_IO_REQ_40 ((uint32_t)(0x00000001UL << MXC_F_IOMAN_LCD_SEG_REQ0_IO_REQ_40_POS))
mbed_official 507:d4fc7603a669 308 #define MXC_F_IOMAN_LCD_SEG_REQ0_IO_REQ_41_POS 17
mbed_official 507:d4fc7603a669 309 #define MXC_F_IOMAN_LCD_SEG_REQ0_IO_REQ_41 ((uint32_t)(0x00000001UL << MXC_F_IOMAN_LCD_SEG_REQ0_IO_REQ_41_POS))
mbed_official 507:d4fc7603a669 310 #define MXC_F_IOMAN_LCD_SEG_REQ0_IO_REQ_42_POS 18
mbed_official 507:d4fc7603a669 311 #define MXC_F_IOMAN_LCD_SEG_REQ0_IO_REQ_42 ((uint32_t)(0x00000001UL << MXC_F_IOMAN_LCD_SEG_REQ0_IO_REQ_42_POS))
mbed_official 507:d4fc7603a669 312 #define MXC_F_IOMAN_LCD_SEG_REQ0_IO_REQ_43_POS 19
mbed_official 507:d4fc7603a669 313 #define MXC_F_IOMAN_LCD_SEG_REQ0_IO_REQ_43 ((uint32_t)(0x00000001UL << MXC_F_IOMAN_LCD_SEG_REQ0_IO_REQ_43_POS))
mbed_official 507:d4fc7603a669 314 #define MXC_F_IOMAN_LCD_SEG_REQ0_IO_REQ_44_POS 20
mbed_official 507:d4fc7603a669 315 #define MXC_F_IOMAN_LCD_SEG_REQ0_IO_REQ_44 ((uint32_t)(0x00000001UL << MXC_F_IOMAN_LCD_SEG_REQ0_IO_REQ_44_POS))
mbed_official 507:d4fc7603a669 316 #define MXC_F_IOMAN_LCD_SEG_REQ0_IO_REQ_45_POS 21
mbed_official 507:d4fc7603a669 317 #define MXC_F_IOMAN_LCD_SEG_REQ0_IO_REQ_45 ((uint32_t)(0x00000001UL << MXC_F_IOMAN_LCD_SEG_REQ0_IO_REQ_45_POS))
mbed_official 507:d4fc7603a669 318 #define MXC_F_IOMAN_LCD_SEG_REQ0_IO_REQ_46_POS 22
mbed_official 507:d4fc7603a669 319 #define MXC_F_IOMAN_LCD_SEG_REQ0_IO_REQ_46 ((uint32_t)(0x00000001UL << MXC_F_IOMAN_LCD_SEG_REQ0_IO_REQ_46_POS))
mbed_official 507:d4fc7603a669 320 #define MXC_F_IOMAN_LCD_SEG_REQ0_IO_REQ_47_POS 23
mbed_official 507:d4fc7603a669 321 #define MXC_F_IOMAN_LCD_SEG_REQ0_IO_REQ_47 ((uint32_t)(0x00000001UL << MXC_F_IOMAN_LCD_SEG_REQ0_IO_REQ_47_POS))
mbed_official 507:d4fc7603a669 322 #define MXC_F_IOMAN_LCD_SEG_REQ0_IO_REQ_48_POS 24
mbed_official 507:d4fc7603a669 323 #define MXC_F_IOMAN_LCD_SEG_REQ0_IO_REQ_48 ((uint32_t)(0x00000001UL << MXC_F_IOMAN_LCD_SEG_REQ0_IO_REQ_48_POS))
mbed_official 507:d4fc7603a669 324 #define MXC_F_IOMAN_LCD_SEG_REQ0_IO_REQ_49_POS 25
mbed_official 507:d4fc7603a669 325 #define MXC_F_IOMAN_LCD_SEG_REQ0_IO_REQ_49 ((uint32_t)(0x00000001UL << MXC_F_IOMAN_LCD_SEG_REQ0_IO_REQ_49_POS))
mbed_official 507:d4fc7603a669 326 #define MXC_F_IOMAN_LCD_SEG_REQ0_IO_REQ_50_POS 26
mbed_official 507:d4fc7603a669 327 #define MXC_F_IOMAN_LCD_SEG_REQ0_IO_REQ_50 ((uint32_t)(0x00000001UL << MXC_F_IOMAN_LCD_SEG_REQ0_IO_REQ_50_POS))
mbed_official 507:d4fc7603a669 328 #define MXC_F_IOMAN_LCD_SEG_REQ0_IO_REQ_51_POS 27
mbed_official 507:d4fc7603a669 329 #define MXC_F_IOMAN_LCD_SEG_REQ0_IO_REQ_51 ((uint32_t)(0x00000001UL << MXC_F_IOMAN_LCD_SEG_REQ0_IO_REQ_51_POS))
mbed_official 507:d4fc7603a669 330 #define MXC_F_IOMAN_LCD_SEG_REQ0_IO_REQ_52_POS 28
mbed_official 507:d4fc7603a669 331 #define MXC_F_IOMAN_LCD_SEG_REQ0_IO_REQ_52 ((uint32_t)(0x00000001UL << MXC_F_IOMAN_LCD_SEG_REQ0_IO_REQ_52_POS))
mbed_official 507:d4fc7603a669 332 #define MXC_F_IOMAN_LCD_SEG_REQ0_IO_REQ_53_POS 29
mbed_official 507:d4fc7603a669 333 #define MXC_F_IOMAN_LCD_SEG_REQ0_IO_REQ_53 ((uint32_t)(0x00000001UL << MXC_F_IOMAN_LCD_SEG_REQ0_IO_REQ_53_POS))
mbed_official 507:d4fc7603a669 334 #define MXC_F_IOMAN_LCD_SEG_REQ0_IO_REQ_54_POS 30
mbed_official 507:d4fc7603a669 335 #define MXC_F_IOMAN_LCD_SEG_REQ0_IO_REQ_54 ((uint32_t)(0x00000001UL << MXC_F_IOMAN_LCD_SEG_REQ0_IO_REQ_54_POS))
mbed_official 507:d4fc7603a669 336 #define MXC_F_IOMAN_LCD_SEG_REQ0_IO_REQ_55_POS 31
mbed_official 507:d4fc7603a669 337 #define MXC_F_IOMAN_LCD_SEG_REQ0_IO_REQ_55 ((uint32_t)(0x00000001UL << MXC_F_IOMAN_LCD_SEG_REQ0_IO_REQ_55_POS))
mbed_official 507:d4fc7603a669 338
mbed_official 507:d4fc7603a669 339 #define MXC_F_IOMAN_LCD_SEG_REQ1_IO_REQ_56_POS 0
mbed_official 507:d4fc7603a669 340 #define MXC_F_IOMAN_LCD_SEG_REQ1_IO_REQ_56 ((uint32_t)(0x00000001UL << MXC_F_IOMAN_LCD_SEG_REQ1_IO_REQ_56_POS))
mbed_official 507:d4fc7603a669 341 #define MXC_F_IOMAN_LCD_SEG_REQ1_IO_REQ_57_POS 1
mbed_official 507:d4fc7603a669 342 #define MXC_F_IOMAN_LCD_SEG_REQ1_IO_REQ_57 ((uint32_t)(0x00000001UL << MXC_F_IOMAN_LCD_SEG_REQ1_IO_REQ_57_POS))
mbed_official 507:d4fc7603a669 343 #define MXC_F_IOMAN_LCD_SEG_REQ1_IO_REQ_58_POS 2
mbed_official 507:d4fc7603a669 344 #define MXC_F_IOMAN_LCD_SEG_REQ1_IO_REQ_58 ((uint32_t)(0x00000001UL << MXC_F_IOMAN_LCD_SEG_REQ1_IO_REQ_58_POS))
mbed_official 507:d4fc7603a669 345 #define MXC_F_IOMAN_LCD_SEG_REQ1_IO_REQ_59_POS 3
mbed_official 507:d4fc7603a669 346 #define MXC_F_IOMAN_LCD_SEG_REQ1_IO_REQ_59 ((uint32_t)(0x00000001UL << MXC_F_IOMAN_LCD_SEG_REQ1_IO_REQ_59_POS))
mbed_official 507:d4fc7603a669 347 #define MXC_F_IOMAN_LCD_SEG_REQ1_IO_REQ_60_POS 4
mbed_official 507:d4fc7603a669 348 #define MXC_F_IOMAN_LCD_SEG_REQ1_IO_REQ_60 ((uint32_t)(0x00000001UL << MXC_F_IOMAN_LCD_SEG_REQ1_IO_REQ_60_POS))
mbed_official 507:d4fc7603a669 349 #define MXC_F_IOMAN_LCD_SEG_REQ1_IO_REQ_61_POS 5
mbed_official 507:d4fc7603a669 350 #define MXC_F_IOMAN_LCD_SEG_REQ1_IO_REQ_61 ((uint32_t)(0x00000001UL << MXC_F_IOMAN_LCD_SEG_REQ1_IO_REQ_61_POS))
mbed_official 507:d4fc7603a669 351 #define MXC_F_IOMAN_LCD_SEG_REQ1_IO_REQ_62_POS 6
mbed_official 507:d4fc7603a669 352 #define MXC_F_IOMAN_LCD_SEG_REQ1_IO_REQ_62 ((uint32_t)(0x00000001UL << MXC_F_IOMAN_LCD_SEG_REQ1_IO_REQ_62_POS))
mbed_official 507:d4fc7603a669 353 #define MXC_F_IOMAN_LCD_SEG_REQ1_IO_REQ_63_POS 7
mbed_official 507:d4fc7603a669 354 #define MXC_F_IOMAN_LCD_SEG_REQ1_IO_REQ_63 ((uint32_t)(0x00000001UL << MXC_F_IOMAN_LCD_SEG_REQ1_IO_REQ_63_POS))
mbed_official 507:d4fc7603a669 355
mbed_official 507:d4fc7603a669 356 #define MXC_F_IOMAN_LCD_SEG_ACK0_IO_ACK_24_POS 0
mbed_official 507:d4fc7603a669 357 #define MXC_F_IOMAN_LCD_SEG_ACK0_IO_ACK_24 ((uint32_t)(0x00000001UL << MXC_F_IOMAN_LCD_SEG_ACK0_IO_ACK_24_POS))
mbed_official 507:d4fc7603a669 358 #define MXC_F_IOMAN_LCD_SEG_ACK0_IO_ACK_25_POS 1
mbed_official 507:d4fc7603a669 359 #define MXC_F_IOMAN_LCD_SEG_ACK0_IO_ACK_25 ((uint32_t)(0x00000001UL << MXC_F_IOMAN_LCD_SEG_ACK0_IO_ACK_25_POS))
mbed_official 507:d4fc7603a669 360 #define MXC_F_IOMAN_LCD_SEG_ACK0_IO_ACK_26_POS 2
mbed_official 507:d4fc7603a669 361 #define MXC_F_IOMAN_LCD_SEG_ACK0_IO_ACK_26 ((uint32_t)(0x00000001UL << MXC_F_IOMAN_LCD_SEG_ACK0_IO_ACK_26_POS))
mbed_official 507:d4fc7603a669 362 #define MXC_F_IOMAN_LCD_SEG_ACK0_IO_ACK_27_POS 3
mbed_official 507:d4fc7603a669 363 #define MXC_F_IOMAN_LCD_SEG_ACK0_IO_ACK_27 ((uint32_t)(0x00000001UL << MXC_F_IOMAN_LCD_SEG_ACK0_IO_ACK_27_POS))
mbed_official 507:d4fc7603a669 364 #define MXC_F_IOMAN_LCD_SEG_ACK0_IO_ACK_28_POS 4
mbed_official 507:d4fc7603a669 365 #define MXC_F_IOMAN_LCD_SEG_ACK0_IO_ACK_28 ((uint32_t)(0x00000001UL << MXC_F_IOMAN_LCD_SEG_ACK0_IO_ACK_28_POS))
mbed_official 507:d4fc7603a669 366 #define MXC_F_IOMAN_LCD_SEG_ACK0_IO_ACK_29_POS 5
mbed_official 507:d4fc7603a669 367 #define MXC_F_IOMAN_LCD_SEG_ACK0_IO_ACK_29 ((uint32_t)(0x00000001UL << MXC_F_IOMAN_LCD_SEG_ACK0_IO_ACK_29_POS))
mbed_official 507:d4fc7603a669 368 #define MXC_F_IOMAN_LCD_SEG_ACK0_IO_ACK_30_POS 6
mbed_official 507:d4fc7603a669 369 #define MXC_F_IOMAN_LCD_SEG_ACK0_IO_ACK_30 ((uint32_t)(0x00000001UL << MXC_F_IOMAN_LCD_SEG_ACK0_IO_ACK_30_POS))
mbed_official 507:d4fc7603a669 370 #define MXC_F_IOMAN_LCD_SEG_ACK0_IO_ACK_31_POS 7
mbed_official 507:d4fc7603a669 371 #define MXC_F_IOMAN_LCD_SEG_ACK0_IO_ACK_31 ((uint32_t)(0x00000001UL << MXC_F_IOMAN_LCD_SEG_ACK0_IO_ACK_31_POS))
mbed_official 507:d4fc7603a669 372 #define MXC_F_IOMAN_LCD_SEG_ACK0_IO_ACK_32_POS 8
mbed_official 507:d4fc7603a669 373 #define MXC_F_IOMAN_LCD_SEG_ACK0_IO_ACK_32 ((uint32_t)(0x00000001UL << MXC_F_IOMAN_LCD_SEG_ACK0_IO_ACK_32_POS))
mbed_official 507:d4fc7603a669 374 #define MXC_F_IOMAN_LCD_SEG_ACK0_IO_ACK_33_POS 9
mbed_official 507:d4fc7603a669 375 #define MXC_F_IOMAN_LCD_SEG_ACK0_IO_ACK_33 ((uint32_t)(0x00000001UL << MXC_F_IOMAN_LCD_SEG_ACK0_IO_ACK_33_POS))
mbed_official 507:d4fc7603a669 376 #define MXC_F_IOMAN_LCD_SEG_ACK0_IO_ACK_34_POS 10
mbed_official 507:d4fc7603a669 377 #define MXC_F_IOMAN_LCD_SEG_ACK0_IO_ACK_34 ((uint32_t)(0x00000001UL << MXC_F_IOMAN_LCD_SEG_ACK0_IO_ACK_34_POS))
mbed_official 507:d4fc7603a669 378 #define MXC_F_IOMAN_LCD_SEG_ACK0_IO_ACK_35_POS 11
mbed_official 507:d4fc7603a669 379 #define MXC_F_IOMAN_LCD_SEG_ACK0_IO_ACK_35 ((uint32_t)(0x00000001UL << MXC_F_IOMAN_LCD_SEG_ACK0_IO_ACK_35_POS))
mbed_official 507:d4fc7603a669 380 #define MXC_F_IOMAN_LCD_SEG_ACK0_IO_ACK_36_POS 12
mbed_official 507:d4fc7603a669 381 #define MXC_F_IOMAN_LCD_SEG_ACK0_IO_ACK_36 ((uint32_t)(0x00000001UL << MXC_F_IOMAN_LCD_SEG_ACK0_IO_ACK_36_POS))
mbed_official 507:d4fc7603a669 382 #define MXC_F_IOMAN_LCD_SEG_ACK0_IO_ACK_37_POS 13
mbed_official 507:d4fc7603a669 383 #define MXC_F_IOMAN_LCD_SEG_ACK0_IO_ACK_37 ((uint32_t)(0x00000001UL << MXC_F_IOMAN_LCD_SEG_ACK0_IO_ACK_37_POS))
mbed_official 507:d4fc7603a669 384 #define MXC_F_IOMAN_LCD_SEG_ACK0_IO_ACK_38_POS 14
mbed_official 507:d4fc7603a669 385 #define MXC_F_IOMAN_LCD_SEG_ACK0_IO_ACK_38 ((uint32_t)(0x00000001UL << MXC_F_IOMAN_LCD_SEG_ACK0_IO_ACK_38_POS))
mbed_official 507:d4fc7603a669 386 #define MXC_F_IOMAN_LCD_SEG_ACK0_IO_ACK_39_POS 15
mbed_official 507:d4fc7603a669 387 #define MXC_F_IOMAN_LCD_SEG_ACK0_IO_ACK_39 ((uint32_t)(0x00000001UL << MXC_F_IOMAN_LCD_SEG_ACK0_IO_ACK_39_POS))
mbed_official 507:d4fc7603a669 388 #define MXC_F_IOMAN_LCD_SEG_ACK0_IO_ACK_40_POS 16
mbed_official 507:d4fc7603a669 389 #define MXC_F_IOMAN_LCD_SEG_ACK0_IO_ACK_40 ((uint32_t)(0x00000001UL << MXC_F_IOMAN_LCD_SEG_ACK0_IO_ACK_40_POS))
mbed_official 507:d4fc7603a669 390 #define MXC_F_IOMAN_LCD_SEG_ACK0_IO_ACK_41_POS 17
mbed_official 507:d4fc7603a669 391 #define MXC_F_IOMAN_LCD_SEG_ACK0_IO_ACK_41 ((uint32_t)(0x00000001UL << MXC_F_IOMAN_LCD_SEG_ACK0_IO_ACK_41_POS))
mbed_official 507:d4fc7603a669 392 #define MXC_F_IOMAN_LCD_SEG_ACK0_IO_ACK_42_POS 18
mbed_official 507:d4fc7603a669 393 #define MXC_F_IOMAN_LCD_SEG_ACK0_IO_ACK_42 ((uint32_t)(0x00000001UL << MXC_F_IOMAN_LCD_SEG_ACK0_IO_ACK_42_POS))
mbed_official 507:d4fc7603a669 394 #define MXC_F_IOMAN_LCD_SEG_ACK0_IO_ACK_43_POS 19
mbed_official 507:d4fc7603a669 395 #define MXC_F_IOMAN_LCD_SEG_ACK0_IO_ACK_43 ((uint32_t)(0x00000001UL << MXC_F_IOMAN_LCD_SEG_ACK0_IO_ACK_43_POS))
mbed_official 507:d4fc7603a669 396 #define MXC_F_IOMAN_LCD_SEG_ACK0_IO_ACK_44_POS 20
mbed_official 507:d4fc7603a669 397 #define MXC_F_IOMAN_LCD_SEG_ACK0_IO_ACK_44 ((uint32_t)(0x00000001UL << MXC_F_IOMAN_LCD_SEG_ACK0_IO_ACK_44_POS))
mbed_official 507:d4fc7603a669 398 #define MXC_F_IOMAN_LCD_SEG_ACK0_IO_ACK_45_POS 21
mbed_official 507:d4fc7603a669 399 #define MXC_F_IOMAN_LCD_SEG_ACK0_IO_ACK_45 ((uint32_t)(0x00000001UL << MXC_F_IOMAN_LCD_SEG_ACK0_IO_ACK_45_POS))
mbed_official 507:d4fc7603a669 400 #define MXC_F_IOMAN_LCD_SEG_ACK0_IO_ACK_46_POS 22
mbed_official 507:d4fc7603a669 401 #define MXC_F_IOMAN_LCD_SEG_ACK0_IO_ACK_46 ((uint32_t)(0x00000001UL << MXC_F_IOMAN_LCD_SEG_ACK0_IO_ACK_46_POS))
mbed_official 507:d4fc7603a669 402 #define MXC_F_IOMAN_LCD_SEG_ACK0_IO_ACK_47_POS 23
mbed_official 507:d4fc7603a669 403 #define MXC_F_IOMAN_LCD_SEG_ACK0_IO_ACK_47 ((uint32_t)(0x00000001UL << MXC_F_IOMAN_LCD_SEG_ACK0_IO_ACK_47_POS))
mbed_official 507:d4fc7603a669 404 #define MXC_F_IOMAN_LCD_SEG_ACK0_IO_ACK_48_POS 24
mbed_official 507:d4fc7603a669 405 #define MXC_F_IOMAN_LCD_SEG_ACK0_IO_ACK_48 ((uint32_t)(0x00000001UL << MXC_F_IOMAN_LCD_SEG_ACK0_IO_ACK_48_POS))
mbed_official 507:d4fc7603a669 406 #define MXC_F_IOMAN_LCD_SEG_ACK0_IO_ACK_49_POS 25
mbed_official 507:d4fc7603a669 407 #define MXC_F_IOMAN_LCD_SEG_ACK0_IO_ACK_49 ((uint32_t)(0x00000001UL << MXC_F_IOMAN_LCD_SEG_ACK0_IO_ACK_49_POS))
mbed_official 507:d4fc7603a669 408 #define MXC_F_IOMAN_LCD_SEG_ACK0_IO_ACK_50_POS 26
mbed_official 507:d4fc7603a669 409 #define MXC_F_IOMAN_LCD_SEG_ACK0_IO_ACK_50 ((uint32_t)(0x00000001UL << MXC_F_IOMAN_LCD_SEG_ACK0_IO_ACK_50_POS))
mbed_official 507:d4fc7603a669 410 #define MXC_F_IOMAN_LCD_SEG_ACK0_IO_ACK_51_POS 27
mbed_official 507:d4fc7603a669 411 #define MXC_F_IOMAN_LCD_SEG_ACK0_IO_ACK_51 ((uint32_t)(0x00000001UL << MXC_F_IOMAN_LCD_SEG_ACK0_IO_ACK_51_POS))
mbed_official 507:d4fc7603a669 412 #define MXC_F_IOMAN_LCD_SEG_ACK0_IO_ACK_52_POS 28
mbed_official 507:d4fc7603a669 413 #define MXC_F_IOMAN_LCD_SEG_ACK0_IO_ACK_52 ((uint32_t)(0x00000001UL << MXC_F_IOMAN_LCD_SEG_ACK0_IO_ACK_52_POS))
mbed_official 507:d4fc7603a669 414 #define MXC_F_IOMAN_LCD_SEG_ACK0_IO_ACK_53_POS 29
mbed_official 507:d4fc7603a669 415 #define MXC_F_IOMAN_LCD_SEG_ACK0_IO_ACK_53 ((uint32_t)(0x00000001UL << MXC_F_IOMAN_LCD_SEG_ACK0_IO_ACK_53_POS))
mbed_official 507:d4fc7603a669 416 #define MXC_F_IOMAN_LCD_SEG_ACK0_IO_ACK_54_POS 30
mbed_official 507:d4fc7603a669 417 #define MXC_F_IOMAN_LCD_SEG_ACK0_IO_ACK_54 ((uint32_t)(0x00000001UL << MXC_F_IOMAN_LCD_SEG_ACK0_IO_ACK_54_POS))
mbed_official 507:d4fc7603a669 418 #define MXC_F_IOMAN_LCD_SEG_ACK0_IO_ACK_55_POS 31
mbed_official 507:d4fc7603a669 419 #define MXC_F_IOMAN_LCD_SEG_ACK0_IO_ACK_55 ((uint32_t)(0x00000001UL << MXC_F_IOMAN_LCD_SEG_ACK0_IO_ACK_55_POS))
mbed_official 507:d4fc7603a669 420
mbed_official 507:d4fc7603a669 421 #define MXC_F_IOMAN_LCD_SEG_ACK1_IO_ACK_56_POS 0
mbed_official 507:d4fc7603a669 422 #define MXC_F_IOMAN_LCD_SEG_ACK1_IO_ACK_56 ((uint32_t)(0x00000001UL << MXC_F_IOMAN_LCD_SEG_ACK1_IO_ACK_56_POS))
mbed_official 507:d4fc7603a669 423 #define MXC_F_IOMAN_LCD_SEG_ACK1_IO_ACK_57_POS 1
mbed_official 507:d4fc7603a669 424 #define MXC_F_IOMAN_LCD_SEG_ACK1_IO_ACK_57 ((uint32_t)(0x00000001UL << MXC_F_IOMAN_LCD_SEG_ACK1_IO_ACK_57_POS))
mbed_official 507:d4fc7603a669 425 #define MXC_F_IOMAN_LCD_SEG_ACK1_IO_ACK_58_POS 2
mbed_official 507:d4fc7603a669 426 #define MXC_F_IOMAN_LCD_SEG_ACK1_IO_ACK_58 ((uint32_t)(0x00000001UL << MXC_F_IOMAN_LCD_SEG_ACK1_IO_ACK_58_POS))
mbed_official 507:d4fc7603a669 427 #define MXC_F_IOMAN_LCD_SEG_ACK1_IO_ACK_59_POS 3
mbed_official 507:d4fc7603a669 428 #define MXC_F_IOMAN_LCD_SEG_ACK1_IO_ACK_59 ((uint32_t)(0x00000001UL << MXC_F_IOMAN_LCD_SEG_ACK1_IO_ACK_59_POS))
mbed_official 507:d4fc7603a669 429 #define MXC_F_IOMAN_LCD_SEG_ACK1_IO_ACK_60_POS 4
mbed_official 507:d4fc7603a669 430 #define MXC_F_IOMAN_LCD_SEG_ACK1_IO_ACK_60 ((uint32_t)(0x00000001UL << MXC_F_IOMAN_LCD_SEG_ACK1_IO_ACK_60_POS))
mbed_official 507:d4fc7603a669 431 #define MXC_F_IOMAN_LCD_SEG_ACK1_IO_ACK_61_POS 5
mbed_official 507:d4fc7603a669 432 #define MXC_F_IOMAN_LCD_SEG_ACK1_IO_ACK_61 ((uint32_t)(0x00000001UL << MXC_F_IOMAN_LCD_SEG_ACK1_IO_ACK_61_POS))
mbed_official 507:d4fc7603a669 433 #define MXC_F_IOMAN_LCD_SEG_ACK1_IO_ACK_62_POS 6
mbed_official 507:d4fc7603a669 434 #define MXC_F_IOMAN_LCD_SEG_ACK1_IO_ACK_62 ((uint32_t)(0x00000001UL << MXC_F_IOMAN_LCD_SEG_ACK1_IO_ACK_62_POS))
mbed_official 507:d4fc7603a669 435 #define MXC_F_IOMAN_LCD_SEG_ACK1_IO_ACK_63_POS 7
mbed_official 507:d4fc7603a669 436 #define MXC_F_IOMAN_LCD_SEG_ACK1_IO_ACK_63 ((uint32_t)(0x00000001UL << MXC_F_IOMAN_LCD_SEG_ACK1_IO_ACK_63_POS))
mbed_official 507:d4fc7603a669 437
mbed_official 507:d4fc7603a669 438 #define MXC_F_IOMAN_CRNT_REQ_IO_REQ_CRNT0_POS 0
mbed_official 507:d4fc7603a669 439 #define MXC_F_IOMAN_CRNT_REQ_IO_REQ_CRNT0 ((uint32_t)(0x00000001UL << MXC_F_IOMAN_CRNT_REQ_IO_REQ_CRNT0_POS))
mbed_official 507:d4fc7603a669 440 #define MXC_F_IOMAN_CRNT_REQ_IO_REQ_CRNT1_POS 1
mbed_official 507:d4fc7603a669 441 #define MXC_F_IOMAN_CRNT_REQ_IO_REQ_CRNT1 ((uint32_t)(0x00000001UL << MXC_F_IOMAN_CRNT_REQ_IO_REQ_CRNT1_POS))
mbed_official 507:d4fc7603a669 442 #define MXC_F_IOMAN_CRNT_REQ_IO_REQ_CRNT2_POS 2
mbed_official 507:d4fc7603a669 443 #define MXC_F_IOMAN_CRNT_REQ_IO_REQ_CRNT2 ((uint32_t)(0x00000001UL << MXC_F_IOMAN_CRNT_REQ_IO_REQ_CRNT2_POS))
mbed_official 507:d4fc7603a669 444 #define MXC_F_IOMAN_CRNT_REQ_IO_REQ_CRNT3_POS 3
mbed_official 507:d4fc7603a669 445 #define MXC_F_IOMAN_CRNT_REQ_IO_REQ_CRNT3 ((uint32_t)(0x00000001UL << MXC_F_IOMAN_CRNT_REQ_IO_REQ_CRNT3_POS))
mbed_official 507:d4fc7603a669 446 #define MXC_F_IOMAN_CRNT_REQ_IO_REQ_CRNT4_POS 4
mbed_official 507:d4fc7603a669 447 #define MXC_F_IOMAN_CRNT_REQ_IO_REQ_CRNT4 ((uint32_t)(0x00000001UL << MXC_F_IOMAN_CRNT_REQ_IO_REQ_CRNT4_POS))
mbed_official 507:d4fc7603a669 448 #define MXC_F_IOMAN_CRNT_REQ_IO_REQ_CRNT5_POS 5
mbed_official 507:d4fc7603a669 449 #define MXC_F_IOMAN_CRNT_REQ_IO_REQ_CRNT5 ((uint32_t)(0x00000001UL << MXC_F_IOMAN_CRNT_REQ_IO_REQ_CRNT5_POS))
mbed_official 507:d4fc7603a669 450 #define MXC_F_IOMAN_CRNT_REQ_IO_REQ_CRNT6_POS 6
mbed_official 507:d4fc7603a669 451 #define MXC_F_IOMAN_CRNT_REQ_IO_REQ_CRNT6 ((uint32_t)(0x00000001UL << MXC_F_IOMAN_CRNT_REQ_IO_REQ_CRNT6_POS))
mbed_official 507:d4fc7603a669 452 #define MXC_F_IOMAN_CRNT_REQ_IO_REQ_CRNT7_POS 7
mbed_official 507:d4fc7603a669 453 #define MXC_F_IOMAN_CRNT_REQ_IO_REQ_CRNT7 ((uint32_t)(0x00000001UL << MXC_F_IOMAN_CRNT_REQ_IO_REQ_CRNT7_POS))
mbed_official 507:d4fc7603a669 454
mbed_official 507:d4fc7603a669 455 #define MXC_F_IOMAN_CRNT_ACK_IO_ACK_CRNT0_POS 0
mbed_official 507:d4fc7603a669 456 #define MXC_F_IOMAN_CRNT_ACK_IO_ACK_CRNT0 ((uint32_t)(0x00000001UL << MXC_F_IOMAN_CRNT_ACK_IO_ACK_CRNT0_POS))
mbed_official 507:d4fc7603a669 457 #define MXC_F_IOMAN_CRNT_ACK_IO_ACK_CRNT1_POS 1
mbed_official 507:d4fc7603a669 458 #define MXC_F_IOMAN_CRNT_ACK_IO_ACK_CRNT1 ((uint32_t)(0x00000001UL << MXC_F_IOMAN_CRNT_ACK_IO_ACK_CRNT1_POS))
mbed_official 507:d4fc7603a669 459 #define MXC_F_IOMAN_CRNT_ACK_IO_ACK_CRNT2_POS 2
mbed_official 507:d4fc7603a669 460 #define MXC_F_IOMAN_CRNT_ACK_IO_ACK_CRNT2 ((uint32_t)(0x00000001UL << MXC_F_IOMAN_CRNT_ACK_IO_ACK_CRNT2_POS))
mbed_official 507:d4fc7603a669 461 #define MXC_F_IOMAN_CRNT_ACK_IO_ACK_CRNT3_POS 3
mbed_official 507:d4fc7603a669 462 #define MXC_F_IOMAN_CRNT_ACK_IO_ACK_CRNT3 ((uint32_t)(0x00000001UL << MXC_F_IOMAN_CRNT_ACK_IO_ACK_CRNT3_POS))
mbed_official 507:d4fc7603a669 463 #define MXC_F_IOMAN_CRNT_ACK_IO_ACK_CRNT4_POS 4
mbed_official 507:d4fc7603a669 464 #define MXC_F_IOMAN_CRNT_ACK_IO_ACK_CRNT4 ((uint32_t)(0x00000001UL << MXC_F_IOMAN_CRNT_ACK_IO_ACK_CRNT4_POS))
mbed_official 507:d4fc7603a669 465 #define MXC_F_IOMAN_CRNT_ACK_IO_ACK_CRNT5_POS 5
mbed_official 507:d4fc7603a669 466 #define MXC_F_IOMAN_CRNT_ACK_IO_ACK_CRNT5 ((uint32_t)(0x00000001UL << MXC_F_IOMAN_CRNT_ACK_IO_ACK_CRNT5_POS))
mbed_official 507:d4fc7603a669 467 #define MXC_F_IOMAN_CRNT_ACK_IO_ACK_CRNT6_POS 6
mbed_official 507:d4fc7603a669 468 #define MXC_F_IOMAN_CRNT_ACK_IO_ACK_CRNT6 ((uint32_t)(0x00000001UL << MXC_F_IOMAN_CRNT_ACK_IO_ACK_CRNT6_POS))
mbed_official 507:d4fc7603a669 469 #define MXC_F_IOMAN_CRNT_ACK_IO_ACK_CRNT7_POS 7
mbed_official 507:d4fc7603a669 470 #define MXC_F_IOMAN_CRNT_ACK_IO_ACK_CRNT7 ((uint32_t)(0x00000001UL << MXC_F_IOMAN_CRNT_ACK_IO_ACK_CRNT7_POS))
mbed_official 507:d4fc7603a669 471
mbed_official 507:d4fc7603a669 472 #define MXC_F_IOMAN_CRNT_MODE_IO_CRNT0_POS 0
mbed_official 507:d4fc7603a669 473 #define MXC_F_IOMAN_CRNT_MODE_IO_CRNT0 ((uint32_t)(0x0000000FUL << MXC_F_IOMAN_CRNT_MODE_IO_CRNT0_POS))
mbed_official 507:d4fc7603a669 474 #define MXC_F_IOMAN_CRNT_MODE_IO_CRNT1_POS 4
mbed_official 507:d4fc7603a669 475 #define MXC_F_IOMAN_CRNT_MODE_IO_CRNT1 ((uint32_t)(0x0000000FUL << MXC_F_IOMAN_CRNT_MODE_IO_CRNT1_POS))
mbed_official 507:d4fc7603a669 476 #define MXC_F_IOMAN_CRNT_MODE_IO_CRNT2_POS 8
mbed_official 507:d4fc7603a669 477 #define MXC_F_IOMAN_CRNT_MODE_IO_CRNT2 ((uint32_t)(0x0000000FUL << MXC_F_IOMAN_CRNT_MODE_IO_CRNT2_POS))
mbed_official 507:d4fc7603a669 478 #define MXC_F_IOMAN_CRNT_MODE_IO_CRNT3_POS 12
mbed_official 507:d4fc7603a669 479 #define MXC_F_IOMAN_CRNT_MODE_IO_CRNT3 ((uint32_t)(0x0000000FUL << MXC_F_IOMAN_CRNT_MODE_IO_CRNT3_POS))
mbed_official 507:d4fc7603a669 480 #define MXC_F_IOMAN_CRNT_MODE_IO_CRNT4_POS 16
mbed_official 507:d4fc7603a669 481 #define MXC_F_IOMAN_CRNT_MODE_IO_CRNT4 ((uint32_t)(0x0000000FUL << MXC_F_IOMAN_CRNT_MODE_IO_CRNT4_POS))
mbed_official 507:d4fc7603a669 482 #define MXC_F_IOMAN_CRNT_MODE_IO_CRNT5_POS 20
mbed_official 507:d4fc7603a669 483 #define MXC_F_IOMAN_CRNT_MODE_IO_CRNT5 ((uint32_t)(0x0000000FUL << MXC_F_IOMAN_CRNT_MODE_IO_CRNT5_POS))
mbed_official 507:d4fc7603a669 484 #define MXC_F_IOMAN_CRNT_MODE_IO_CRNT6_POS 24
mbed_official 507:d4fc7603a669 485 #define MXC_F_IOMAN_CRNT_MODE_IO_CRNT6 ((uint32_t)(0x0000000FUL << MXC_F_IOMAN_CRNT_MODE_IO_CRNT6_POS))
mbed_official 507:d4fc7603a669 486 #define MXC_F_IOMAN_CRNT_MODE_IO_CRNT7_POS 28
mbed_official 507:d4fc7603a669 487 #define MXC_F_IOMAN_CRNT_MODE_IO_CRNT7 ((uint32_t)(0x0000000FUL << MXC_F_IOMAN_CRNT_MODE_IO_CRNT7_POS))
mbed_official 507:d4fc7603a669 488
mbed_official 507:d4fc7603a669 489 #define MXC_F_IOMAN_PADX_CONTROL_PADX_POWER_CONTROL_POS 0
mbed_official 507:d4fc7603a669 490 #define MXC_F_IOMAN_PADX_CONTROL_PADX_POWER_CONTROL ((uint32_t)(0x00000001UL << MXC_F_IOMAN_PADX_CONTROL_PADX_POWER_CONTROL_POS))
mbed_official 507:d4fc7603a669 491 #define MXC_F_IOMAN_PADX_CONTROL_PADX_GPIO0_OUT_MODE_POS 4
mbed_official 507:d4fc7603a669 492 #define MXC_F_IOMAN_PADX_CONTROL_PADX_GPIO0_OUT_MODE ((uint32_t)(0x00000003UL << MXC_F_IOMAN_PADX_CONTROL_PADX_GPIO0_OUT_MODE_POS))
mbed_official 507:d4fc7603a669 493 #define MXC_F_IOMAN_PADX_CONTROL_PADX_GPIO0_INPUT_STATE_POS 6
mbed_official 507:d4fc7603a669 494 #define MXC_F_IOMAN_PADX_CONTROL_PADX_GPIO0_INPUT_STATE ((uint32_t)(0x00000001UL << MXC_F_IOMAN_PADX_CONTROL_PADX_GPIO0_INPUT_STATE_POS))
mbed_official 507:d4fc7603a669 495 #define MXC_F_IOMAN_PADX_CONTROL_PADX_GPIO1_OUT_MODE_POS 8
mbed_official 507:d4fc7603a669 496 #define MXC_F_IOMAN_PADX_CONTROL_PADX_GPIO1_OUT_MODE ((uint32_t)(0x00000003UL << MXC_F_IOMAN_PADX_CONTROL_PADX_GPIO1_OUT_MODE_POS))
mbed_official 507:d4fc7603a669 497 #define MXC_F_IOMAN_PADX_CONTROL_PADX_GPIO1_INPUT_STATE_POS 10
mbed_official 507:d4fc7603a669 498 #define MXC_F_IOMAN_PADX_CONTROL_PADX_GPIO1_INPUT_STATE ((uint32_t)(0x00000001UL << MXC_F_IOMAN_PADX_CONTROL_PADX_GPIO1_INPUT_STATE_POS))
mbed_official 507:d4fc7603a669 499
mbed_official 507:d4fc7603a669 500 #ifdef __cplusplus
mbed_official 507:d4fc7603a669 501 }
mbed_official 507:d4fc7603a669 502 #endif
mbed_official 507:d4fc7603a669 503
mbed_official 507:d4fc7603a669 504 /**
mbed_official 507:d4fc7603a669 505 * @}
mbed_official 507:d4fc7603a669 506 */
mbed_official 507:d4fc7603a669 507
mbed_official 507:d4fc7603a669 508 #endif /* _MXC_IOMAN_REGS_H_ */