14 lines
257 B
C

#ifndef _DEBUG_H_
#define _DEBUG_H_
#include <stdint.h>
typedef enum { DEBUG_1, DEBUG_2, LED_RED, LED_GREEN } signalPin_t;
typedef enum { ON, OFF, TOGGLE } signalAction_t;
void signal(signalPin_t signalPin, signalAction_t action);
#endif // _DEBUG_H_