13 lines
212 B
C
13 lines
212 B
C
/* ___DISCLAIMER___ */
|
|
|
|
#ifndef _LED_H
|
|
#define _LED_H
|
|
|
|
void readled(unsigned int state);
|
|
void rdyled(unsigned int state);
|
|
void led_clkout32(uint32_t val);
|
|
void toggle_rdy_led(void);
|
|
void led_panic(void);
|
|
|
|
#endif
|