-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathled.h
30 lines (18 loc) · 812 Bytes
/
led.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
/*******************************************************************************
Porting of official MCP251xFDcanfdspiAPIforSAMV71_v1_1 on Raspberry Pico
developped by Pierpaolo Scorrano of SG Electronic Systems srls
www.sg-electronic-systems.com
Porting of official MCP251xFDcanfdspiAPIforSAMV71_v1_1 on Raspberry Pico
https://ww1.microchip.com/downloads/aemDocuments/documents/APID/ProductDocuments/SoftwareLibraries/Firmware/MCP251xFDcanfdspiAPIforSAMV71_v1_1.zip
*******************************************************************************/
#ifndef LED_H_
#define LED_H_
void led_init(void);
void led_on(void);
void led_off(void);
void led1_on(void);
void led1_off(void);
void led2_on(void);
void led2_off(void);
void led_test(void);
#endif /* LED_H_ */