Hello every body,
i try the macro setbit(port,bit) ...
#define setbit(p,b) ((p)|=(b))
#define clearbit(p,b) ((p)&= ~(b))
#define testbit(p,b) ((p)&(b))
#define toglebit(p,b) ((p)=(p)^(b))
but i m a beginner and i think i must define first the funktion so that´s why i got the error "p and b not define"
i need a help...