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.cpp@0:09421f2b914a, 2015-11-25 (annotated)
- Committer:
- SuprithI
- Date:
- Wed Nov 25 13:05:19 2015 +0000
- Revision:
- 0:09421f2b914a
library1
Who changed what in which revision?
| User | Revision | Line number | New contents of line |
|---|---|---|---|
| SuprithI | 0:09421f2b914a | 1 | #ifndef MBED_FLASHER_H |
| SuprithI | 0:09421f2b914a | 2 | #define MBED_FLASHER_H |
| SuprithI | 0:09421f2b914a | 3 | |
| SuprithI | 0:09421f2b914a | 4 | #include "mbed.h" |
| SuprithI | 0:09421f2b914a | 5 | |
| SuprithI | 0:09421f2b914a | 6 | class Flasher { |
| SuprithI | 0:09421f2b914a | 7 | public: |
| SuprithI | 0:09421f2b914a | 8 | Flasher(PinName pin); |
| SuprithI | 0:09421f2b914a | 9 | void flash(int n); |
| SuprithI | 0:09421f2b914a | 10 | |
| SuprithI | 0:09421f2b914a | 11 | private: |
| SuprithI | 0:09421f2b914a | 12 | DigitalOut _pin; |
| SuprithI | 0:09421f2b914a | 13 | }; |
| SuprithI | 0:09421f2b914a | 14 | |
| SuprithI | 0:09421f2b914a | 15 | #endif |