M480 BSP V3.05.005
The Board Support Package for M480 Series
Modules | Macros | Typedefs

Modules

 Legacy Constants
 

Macros

#define M8(addr)   (*((vu8 *) (addr)))
 Get a 8-bit unsigned value from specified address. More...
 
#define M16(addr)   (*((vu16 *) (addr)))
 Get a 16-bit unsigned value from specified address. More...
 
#define M32(addr)   (*((vu32 *) (addr)))
 Get a 32-bit unsigned value from specified address. More...
 
#define outpw(port, value)   *((volatile unsigned int *)(port)) = (value)
 Set a 32-bit unsigned value to specified I/O port. More...
 
#define inpw(port)   (*((volatile unsigned int *)(port)))
 Get a 32-bit unsigned value from specified I/O port. More...
 
#define outps(port, value)   *((volatile unsigned short *)(port)) = (value)
 Set a 16-bit unsigned value to specified I/O port. More...
 
#define inps(port)   (*((volatile unsigned short *)(port)))
 Get a 16-bit unsigned value from specified I/O port. More...
 
#define outpb(port, value)   *((volatile unsigned char *)(port)) = (value)
 Set a 8-bit unsigned value to specified I/O port. More...
 
#define inpb(port)   (*((volatile unsigned char *)(port)))
 Get a 8-bit unsigned value from specified I/O port. More...
 
#define outp32(port, value)   *((volatile unsigned int *)(port)) = (value)
 Set a 32-bit unsigned value to specified I/O port. More...
 
#define inp32(port)   (*((volatile unsigned int *)(port)))
 Get a 32-bit unsigned value from specified I/O port. More...
 
#define outp16(port, value)   *((volatile unsigned short *)(port)) = (value)
 Set a 16-bit unsigned value to specified I/O port. More...
 
#define inp16(port)   (*((volatile unsigned short *)(port)))
 Get a 16-bit unsigned value from specified I/O port. More...
 
#define outp8(port, value)   *((volatile unsigned char *)(port)) = (value)
 Set a 8-bit unsigned value to specified I/O port. More...
 
#define inp8(port)   (*((volatile unsigned char *)(port)))
 Get a 8-bit unsigned value from specified I/O port. More...
 

Typedefs

typedef volatile uint8_t vu8
 Define 8-bit unsigned volatile data type. More...
 
typedef volatile uint16_t vu16
 Define 16-bit unsigned volatile data type. More...
 
typedef volatile uint32_t vu32
 Define 32-bit unsigned volatile data type. More...
 
typedef volatile uint64_t vu64
 Define 64-bit unsigned volatile data type. More...
 

Detailed Description

The Declaration of I/O Routines

Macro Definition Documentation

◆ inp16

#define inp16 (   port)    (*((volatile unsigned short *)(port)))

Get a 16-bit unsigned value from specified I/O port.

Parameters
[in]portPort address to get 16-bit data from
Returns
16-bit unsigned value stored in specified I/O port
Note
The input port must be 16-bit aligned

Definition at line 576 of file M480.h.

◆ inp32

#define inp32 (   port)    (*((volatile unsigned int *)(port)))

Get a 32-bit unsigned value from specified I/O port.

Parameters
[in]portPort address to get 32-bit data from
Returns
32-bit unsigned value stored in specified I/O port
Note
The input port must be 32-bit aligned

Definition at line 559 of file M480.h.

◆ inp8

#define inp8 (   port)    (*((volatile unsigned char *)(port)))

Get a 8-bit unsigned value from specified I/O port.

Parameters
[in]portPort address to get 8-bit data from
Returns
8-bit unsigned value stored in specified I/O port

Definition at line 591 of file M480.h.

◆ inpb

#define inpb (   port)    (*((volatile unsigned char *)(port)))

Get a 8-bit unsigned value from specified I/O port.

Parameters
[in]portPort address to get 8-bit data from
Returns
8-bit unsigned value stored in specified I/O port

Definition at line 542 of file M480.h.

◆ inps

#define inps (   port)    (*((volatile unsigned short *)(port)))

Get a 16-bit unsigned value from specified I/O port.

Parameters
[in]portPort address to get 16-bit data from
Returns
16-bit unsigned value stored in specified I/O port
Note
The input port must be 16-bit aligned

Definition at line 527 of file M480.h.

◆ inpw

#define inpw (   port)    (*((volatile unsigned int *)(port)))

Get a 32-bit unsigned value from specified I/O port.

Parameters
[in]portPort address to get 32-bit data from
Returns
32-bit unsigned value stored in specified I/O port
Note
The input port must be 32-bit aligned

Definition at line 510 of file M480.h.

◆ M16

#define M16 (   addr)    (*((vu16 *) (addr)))

Get a 16-bit unsigned value from specified address.

Parameters
[in]addrAddress to get 16-bit data from
Returns
16-bit unsigned value stored in specified address
Note
The input address must be 16-bit aligned

Definition at line 485 of file M480.h.

◆ M32

#define M32 (   addr)    (*((vu32 *) (addr)))

Get a 32-bit unsigned value from specified address.

Parameters
[in]addrAddress to get 32-bit data from
Returns
32-bit unsigned value stored in specified address
Note
The input address must be 32-bit aligned

Definition at line 493 of file M480.h.

◆ M8

#define M8 (   addr)    (*((vu8 *) (addr)))

Get a 8-bit unsigned value from specified address.

Parameters
[in]addrAddress to get 8-bit data from
Returns
8-bit unsigned value stored in specified address

Definition at line 477 of file M480.h.

◆ outp16

#define outp16 (   port,
  value 
)    *((volatile unsigned short *)(port)) = (value)

Set a 16-bit unsigned value to specified I/O port.

Parameters
[in]portPort address to set 16-bit data
[in]valueValue to write to I/O port
Returns
None
Note
The output port must be 16-bit aligned

Definition at line 568 of file M480.h.

◆ outp32

#define outp32 (   port,
  value 
)    *((volatile unsigned int *)(port)) = (value)

Set a 32-bit unsigned value to specified I/O port.

Parameters
[in]portPort address to set 32-bit data
[in]valueValue to write to I/O port
Returns
None
Note
The output port must be 32-bit aligned

Definition at line 551 of file M480.h.

◆ outp8

#define outp8 (   port,
  value 
)    *((volatile unsigned char *)(port)) = (value)

Set a 8-bit unsigned value to specified I/O port.

Parameters
[in]portPort address to set 8-bit data
[in]valueValue to write to I/O port
Returns
None

Definition at line 584 of file M480.h.

◆ outpb

#define outpb (   port,
  value 
)    *((volatile unsigned char *)(port)) = (value)

Set a 8-bit unsigned value to specified I/O port.

Parameters
[in]portPort address to set 8-bit data
[in]valueValue to write to I/O port
Returns
None

Definition at line 535 of file M480.h.

◆ outps

#define outps (   port,
  value 
)    *((volatile unsigned short *)(port)) = (value)

Set a 16-bit unsigned value to specified I/O port.

Parameters
[in]portPort address to set 16-bit data
[in]valueValue to write to I/O port
Returns
None
Note
The output port must be 16-bit aligned

Definition at line 519 of file M480.h.

◆ outpw

#define outpw (   port,
  value 
)    *((volatile unsigned int *)(port)) = (value)

Set a 32-bit unsigned value to specified I/O port.

Parameters
[in]portPort address to set 32-bit data
[in]valueValue to write to I/O port
Returns
None
Note
The output port must be 32-bit aligned

Definition at line 502 of file M480.h.

Typedef Documentation

◆ vu16

typedef volatile uint16_t vu16

Define 16-bit unsigned volatile data type.

Definition at line 468 of file M480.h.

◆ vu32

typedef volatile uint32_t vu32

Define 32-bit unsigned volatile data type.

Definition at line 469 of file M480.h.

◆ vu64

typedef volatile uint64_t vu64

Define 64-bit unsigned volatile data type.

Definition at line 470 of file M480.h.

◆ vu8

typedef volatile uint8_t vu8

Define 8-bit unsigned volatile data type.

Definition at line 467 of file M480.h.