ジャパンオープン用のLPC824専用プログラム

Dependencies:   mbed-src Ping SDFileSystem

Committer:
lilac0112_1
Date:
Sat Feb 27 06:35:13 2016 +0000
Revision:
0:6c79a352010b
Child:
1:ea7307724f1c
subcode for japan open.

Who changed what in which revision?

UserRevisionLine numberNew contents of line
lilac0112_1 0:6c79a352010b 1 #include "mbed.h"
lilac0112_1 0:6c79a352010b 2 #include "extern.h"
lilac0112_1 0:6c79a352010b 3 #include "main.h"
lilac0112_1 0:6c79a352010b 4
lilac0112_1 0:6c79a352010b 5 int main() {
lilac0112_1 0:6c79a352010b 6 while(1) {
lilac0112_1 0:6c79a352010b 7
lilac0112_1 0:6c79a352010b 8 #ifdef SD_CARD
lilac0112_1 0:6c79a352010b 9 Sd_System();
lilac0112_1 0:6c79a352010b 10 #endif /*SD_CARD*/
lilac0112_1 0:6c79a352010b 11
lilac0112_1 0:6c79a352010b 12 #if defined(ULTRA_SONIC) || defined(ULTRA_SONIC_2)
lilac0112_1 0:6c79a352010b 13 Usw_System();
lilac0112_1 0:6c79a352010b 14 #endif /*(ULTRA_SONIC) || (ULTRA_SONIC_2)*/
lilac0112_1 0:6c79a352010b 15
lilac0112_1 0:6c79a352010b 16 #ifdef COLOR_SENSOR
lilac0112_1 0:6c79a352010b 17 Color_System();
lilac0112_1 0:6c79a352010b 18 #endif /*COLOR_SENSOR*/
lilac0112_1 0:6c79a352010b 19
lilac0112_1 0:6c79a352010b 20 #ifdef IR_SENSOR
lilac0112_1 0:6c79a352010b 21 Ir_System();
lilac0112_1 0:6c79a352010b 22 #endif /*IR_SENSOR*/
lilac0112_1 0:6c79a352010b 23 }
lilac0112_1 0:6c79a352010b 24 }