mctools/setpin.c

12 lines
142 B
C
Raw Normal View History

2024-05-04 20:00:58 +02:00
#include "mctools.h"
void setpin(uint8_t port, uint8_t pin, uint8_t val)
{
if (val)
setpin_hi(port,pin);
else
setpin_lo(port,pin);
}