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.
Dependencies: SDFileSystem mbed ILI9340_Driver_Lib
Fork of Seeed_SDCard_Shield by
bdebug.h
- Committer:
- screamer
- Date:
- 2014-03-17
- Revision:
- 0:525c842a3c89
File content as of revision 0:525c842a3c89:
/* blink debug */
void blink(DigitalOut led, int count = 1, float delay = 0.2) {
led = 0;
int i=0;
for (i=0; i<count*2; i++) {
led = led ? 0 : 1;
wait(delay);
}
}
