/* Interrupt Generation Register 1 from ISP CPU to Host IC */ #define MCUCTL_REG_INTGR1 (MCUCTL_BASE + 0x1c) /* __n = 0...9 */ #define INTGR1_INTGC(__n) (1 << (__n))
/* Interrupt Clear Register 1 from ISP CPU to Host IC */ #define MCUCTL_REG_INTCR1 (MCUCTL_BASE + 0x20) /* __n = 0...9 */ #define INTCR1_INTCC(__n) (1 << (__n))
/* Interrupt Mask Register 1 from ISP CPU to Host IC */ #define MCUCTL_REG_INTMR1 (MCUCTL_BASE + 0x24) /* __n = 0...9 */ #define INTMR1_INTMC(__n) (1 << (__n))
/* Interrupt Status Register 1 from ISP CPU to Host IC */ #define MCUCTL_REG_INTSR1 (MCUCTL_BASE + 0x28) /* Interrupt Mask Status Register 1 from ISP CPU to Host IC */ #define MCUCTL_REG_INTMSR1 (MCUCTL_BASE + 0x2c)
/* Interrupt Clear Register 2 from ISP BLK's interrupts to Host IC */ #define MCUCTL_REG_INTCR2 (MCUCTL_BASE + 0x30) /* __n = 0...5 */ #define INTCR2_INTCC(__n) (1 << ((__n) + 16))
/* Interrupt Mask Register 2 from ISP BLK's interrupts to Host IC */ #define MCUCTL_REG_INTMR2 (MCUCTL_BASE + 0x34) /* __n = 0...25 */ #define INTMR2_INTMCIS(__n) (1 << (__n))
/* Interrupt Status Register 2 from ISP BLK's interrupts to Host IC */ #define MCUCTL_REG_INTSR2 (MCUCTL_BASE + 0x38) /* Interrupt Mask Status Register 2 from ISP BLK's interrupts to Host IC */ #define MCUCTL_REG_INTMSR2 (MCUCTL_BASE + 0x3c)
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.