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@9:7f98d4415425, 2016-01-24 (annotated)
- Committer:
- lilac0112_1
- Date:
- Sun Jan 24 15:16:26 2016 +0000
- Revision:
- 9:7f98d4415425
- Parent:
- 7:9b1ac6fbf32c
- Child:
- 10:641da47d4a14
utilized interrupt on chip select.
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 | 0:2f48b11b154f | 17 | void Ir_System(void); |
| lilac0112_1 | 7:9b1ac6fbf32c | 18 | int read_input(int ic, int channel); |
| lilac0112_1 | 9:7f98d4415425 | 19 | void BubbleSort(uint16_t *data, uint8_t n); |
| lilac0112_1 | 0:2f48b11b154f | 20 | #endif /*IR_SENSOR*/ |
| lilac0112_1 | 0:2f48b11b154f | 21 | |
| lilac0112_1 | 0:2f48b11b154f | 22 | #endif /*_FORMAT_H_*/ |