changed types to use <stdint.h>
This commit is contained in:
@@ -24,12 +24,12 @@
|
||||
*********************************************************************/
|
||||
|
||||
/* Register read/write macros */
|
||||
#define MCF_EPORT_EPPAR (*(vuint16*)(&__MBAR[0xF00]))
|
||||
#define MCF_EPORT_EPDDR (*(vuint8 *)(&__MBAR[0xF04]))
|
||||
#define MCF_EPORT_EPIER (*(vuint8 *)(&__MBAR[0xF05]))
|
||||
#define MCF_EPORT_EPDR (*(vuint8 *)(&__MBAR[0xF08]))
|
||||
#define MCF_EPORT_EPPDR (*(vuint8 *)(&__MBAR[0xF09]))
|
||||
#define MCF_EPORT_EPFR (*(vuint8 *)(&__MBAR[0xF0C]))
|
||||
#define MCF_EPORT_EPPAR (*(volatile uint16_t*)(&__MBAR[0xF00]))
|
||||
#define MCF_EPORT_EPDDR (*(volatile uint8_t *)(&__MBAR[0xF04]))
|
||||
#define MCF_EPORT_EPIER (*(volatile uint8_t *)(&__MBAR[0xF05]))
|
||||
#define MCF_EPORT_EPDR (*(volatile uint8_t *)(&__MBAR[0xF08]))
|
||||
#define MCF_EPORT_EPPDR (*(volatile uint8_t *)(&__MBAR[0xF09]))
|
||||
#define MCF_EPORT_EPFR (*(volatile uint8_t *)(&__MBAR[0xF0C]))
|
||||
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user