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.
Flasher.h@0:2c736f318a3d, 2010-12-04 (annotated)
- Committer:
- mamezu
- Date:
- Sat Dec 04 02:49:37 2010 +0000
- Revision:
- 0:2c736f318a3d
Who changed what in which revision?
| User | Revision | Line number | New contents of line |
|---|---|---|---|
| mamezu | 0:2c736f318a3d | 1 | //#ifndef MBED_FLASHER_H |
| mamezu | 0:2c736f318a3d | 2 | //#define MBED_FLASHER_H |
| mamezu | 0:2c736f318a3d | 3 | |
| mamezu | 0:2c736f318a3d | 4 | #include "mbed.h" |
| mamezu | 0:2c736f318a3d | 5 | |
| mamezu | 0:2c736f318a3d | 6 | class Flasher { |
| mamezu | 0:2c736f318a3d | 7 | public: |
| mamezu | 0:2c736f318a3d | 8 | Flasher(PinName pin); |
| mamezu | 0:2c736f318a3d | 9 | void flash(int n); |
| mamezu | 0:2c736f318a3d | 10 | |
| mamezu | 0:2c736f318a3d | 11 | private: |
| mamezu | 0:2c736f318a3d | 12 | DigitalOut _pin; |
| mamezu | 0:2c736f318a3d | 13 | }; |
| mamezu | 0:2c736f318a3d | 14 | |
| mamezu | 0:2c736f318a3d | 15 | //#endif |