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.
Fork of Sean_AdiSense1000_V21 by
inc/bootloader.h@34:029fc3b83f78, 2018-09-24 (annotated)
- Committer:
- nfathurr
- Date:
- Mon Sep 24 11:39:35 2018 +0000
- Revision:
- 34:029fc3b83f78
v21
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
nfathurr | 34:029fc3b83f78 | 1 | |
nfathurr | 34:029fc3b83f78 | 2 | #ifndef __BOOTLOADER_H_ |
nfathurr | 34:029fc3b83f78 | 3 | #define __BOOTLOADER_H_ |
nfathurr | 34:029fc3b83f78 | 4 | |
nfathurr | 34:029fc3b83f78 | 5 | |
nfathurr | 34:029fc3b83f78 | 6 | #include <stdint.h> |
nfathurr | 34:029fc3b83f78 | 7 | |
nfathurr | 34:029fc3b83f78 | 8 | #include "mbed.h" |
nfathurr | 34:029fc3b83f78 | 9 | |
nfathurr | 34:029fc3b83f78 | 10 | |
nfathurr | 34:029fc3b83f78 | 11 | #define BOOTLOADER_FLAG_BACKUP_REG 0x00 |
nfathurr | 34:029fc3b83f78 | 12 | |
nfathurr | 34:029fc3b83f78 | 13 | |
nfathurr | 34:029fc3b83f78 | 14 | // Enter bootloader mode |
nfathurr | 34:029fc3b83f78 | 15 | void Bootloader_Init( void ); |
nfathurr | 34:029fc3b83f78 | 16 | |
nfathurr | 34:029fc3b83f78 | 17 | |
nfathurr | 34:029fc3b83f78 | 18 | #endif |