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.
main_init.h@14:062850afdf38, 2021-04-22 (annotated)
- Committer:
- wuliqunyy
- Date:
- Thu Apr 22 11:35:17 2021 +0000
- Revision:
- 14:062850afdf38
- Parent:
- 12:9f8c7f4da5f6
- Child:
- 16:a0bfe33f8a4a
working version with DOE2 CL;
Who changed what in which revision?
| User | Revision | Line number | New contents of line |
|---|---|---|---|
| wuliqunyy | 5:daab0e0e67e2 | 1 | #ifndef MAIN_INIT_H |
| wuliqunyy | 5:daab0e0e67e2 | 2 | #define MAIN_INIT_H |
| wuliqunyy | 5:daab0e0e67e2 | 3 | |
| wuliqunyy | 5:daab0e0e67e2 | 4 | /*Digital outputs*/ |
| wuliqunyy | 5:daab0e0e67e2 | 5 | DigitalOut led1(LED1); |
| wuliqunyy | 5:daab0e0e67e2 | 6 | DigitalOut led2(LED2); |
| wuliqunyy | 6:019ab407ac3c | 7 | //DigitalOut led3(LED3); |
| wuliqunyy | 5:daab0e0e67e2 | 8 | DigitalOut led4(LED4); |
| wuliqunyy | 14:062850afdf38 | 9 | DigitalOut fpga_rstb(p27); //p27 of MBED is connectted to p22 of the FPGA CMOD for 90415FPGA_EVB2 |
| wuliqunyy | 5:daab0e0e67e2 | 10 | |
| wuliqunyy | 6:019ab407ac3c | 11 | void reset_fpga(){ |
| wuliqunyy | 6:019ab407ac3c | 12 | fpga_rstb = 0; |
| wuliqunyy | 6:019ab407ac3c | 13 | } |
| wuliqunyy | 6:019ab407ac3c | 14 | |
| wuliqunyy | 6:019ab407ac3c | 15 | void enbale_fpga(){ |
| wuliqunyy | 6:019ab407ac3c | 16 | fpga_rstb = 1; |
| wuliqunyy | 6:019ab407ac3c | 17 | } |
| wuliqunyy | 6:019ab407ac3c | 18 | |
| wuliqunyy | 5:daab0e0e67e2 | 19 | void main_init(){ |
| wuliqunyy | 5:daab0e0e67e2 | 20 | led1 = 1; |
| wuliqunyy | 5:daab0e0e67e2 | 21 | led2 = 0; |
| wuliqunyy | 6:019ab407ac3c | 22 | //led3 = 0; |
| wuliqunyy | 5:daab0e0e67e2 | 23 | led4 = 0; |
| wuliqunyy | 6:019ab407ac3c | 24 | reset_fpga(); |
| wuliqunyy | 5:daab0e0e67e2 | 25 | } |
| wuliqunyy | 6:019ab407ac3c | 26 | |
| wuliqunyy | 5:daab0e0e67e2 | 27 | #endif |
