Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Diff: main_init.h
- Revision:
- 16:a0bfe33f8a4a
- Parent:
- 14:062850afdf38
- Child:
- 17:5b17c9dc85b2
--- a/main_init.h Wed May 12 10:09:04 2021 +0000
+++ b/main_init.h Fri May 21 12:42:56 2021 +0000
@@ -4,7 +4,7 @@
/*Digital outputs*/
DigitalOut led1(LED1);
DigitalOut led2(LED2);
-//DigitalOut led3(LED3);
+DigitalOut led3(LED3);
DigitalOut led4(LED4);
DigitalOut fpga_rstb(p27); //p27 of MBED is connectted to p22 of the FPGA CMOD for 90415FPGA_EVB2
@@ -17,9 +17,9 @@
}
void main_init(){
- led1 = 1;
+ led1 = 0;
led2 = 0;
- //led3 = 0;
+ led3 = 0;
led4 = 0;
reset_fpga();
}
