14 lines
309 B
C
14 lines
309 B
C
#ifndef __PORTMACROS_H__
|
|
#define __PORTMACROS_H__
|
|
|
|
|
|
#define PORT2DIR_(X) X ## DIR
|
|
#define PORT2DIR(PORTNAME) PORT2DIR_(PORTNAME)
|
|
#define PORT2BIT_(X,N) X ## _ ## N
|
|
#define PORT2BIT(PORTNAME, PIN) PORT2BIT_(PORTNAME,PIN)
|
|
#define PORT2INP_(X) X ## INP
|
|
#define PORT2INP(PORTNAME) PORT2INP_(PORTNAME)
|
|
|
|
|
|
#endif
|