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.
Revision 0:89b5d90cdd9e, committed 2017-09-30
- Comitter:
- nguyenmanhthao996tn
- Date:
- Sat Sep 30 09:12:23 2017 +0000
- Commit message:
- Worked version
Changed in this revision
delay.cpp | Show annotated file Show diff for this revision Revisions of this file |
delay.h | Show annotated file Show diff for this revision Revisions of this file |
diff -r 000000000000 -r 89b5d90cdd9e delay.cpp --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/delay.cpp Sat Sep 30 09:12:23 2017 +0000 @@ -0,0 +1,2 @@ +#include "delay.h" +
diff -r 000000000000 -r 89b5d90cdd9e delay.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/delay.h Sat Sep 30 09:12:23 2017 +0000 @@ -0,0 +1,10 @@ +#ifndef __DELAY__ +#define __DELAY__ + +/*********** Libraries ***********/ +#include "mbed.h" + +/*********** Constants ***********/ +#define delay_ms(miliseconds) wait_ms(miliseconds) + +#endif /* __DELAY__ */ \ No newline at end of file