13 lines
193 B
C
13 lines
193 B
C
#ifndef LED_H
|
|
#define LED_H
|
|
|
|
#include <stdint.h>
|
|
#include "system.h"
|
|
|
|
void led_setup(void);
|
|
void led_on(int led);
|
|
void led_off(int led);
|
|
void led_toggle(int led);
|
|
void led_beat(int b);
|
|
|
|
#endif
|