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: Ping SDFileSystem mbed-src
format.h@6:79dc74e4926a, 2016-01-12 (annotated)
- Committer:
- lilac0112_1
- Date:
- Tue Jan 12 14:59:09 2016 +0000
- Revision:
- 6:79dc74e4926a
- Parent:
- 0:2f48b11b154f
- Child:
- 7:9b1ac6fbf32c
added a library
Who changed what in which revision?
| User | Revision | Line number | New contents of line |
|---|---|---|---|
| lilac0112_1 | 0:2f48b11b154f | 1 | #ifndef _FORMAT_H_ |
| lilac0112_1 | 0:2f48b11b154f | 2 | #define _FORMAT_H_ |
| lilac0112_1 | 0:2f48b11b154f | 3 | |
| lilac0112_1 | 0:2f48b11b154f | 4 | #ifdef SD_CARD |
| lilac0112_1 | 0:2f48b11b154f | 5 | void Sd_System(void); |
| lilac0112_1 | 0:2f48b11b154f | 6 | #endif /*SD_CARD*/ |
| lilac0112_1 | 0:2f48b11b154f | 7 | |
| lilac0112_1 | 0:2f48b11b154f | 8 | #ifdef ULTRA_SONIC |
| lilac0112_1 | 0:2f48b11b154f | 9 | void Usw_System(void); |
| lilac0112_1 | 0:2f48b11b154f | 10 | #endif /*ULTRA_SONIC*/ |
| lilac0112_1 | 0:2f48b11b154f | 11 | |
| lilac0112_1 | 0:2f48b11b154f | 12 | #ifdef COLOR_SENSOR |
| lilac0112_1 | 0:2f48b11b154f | 13 | void Color_System(void); |
| lilac0112_1 | 0:2f48b11b154f | 14 | #endif /*COLOR_SENSOR*/ |
| lilac0112_1 | 0:2f48b11b154f | 15 | |
| lilac0112_1 | 0:2f48b11b154f | 16 | #ifdef IR_SENSOR |
| lilac0112_1 | 6:79dc74e4926a | 17 | void Ir_System2(void); |
| lilac0112_1 | 0:2f48b11b154f | 18 | void Ir_System(void); |
| lilac0112_1 | 0:2f48b11b154f | 19 | #endif /*IR_SENSOR*/ |
| lilac0112_1 | 0:2f48b11b154f | 20 | |
| lilac0112_1 | 0:2f48b11b154f | 21 | #endif /*_FORMAT_H_*/ |