LPC824専用プログラム

Dependencies:   Ping SDFileSystem mbed-src

Committer:
lilac0112_1
Date:
Thu Feb 25 06:17:49 2016 +0000
Revision:
16:f0d3e58b3ca5
Parent:
7:9b1ac6fbf32c
Hokushinetsu(SubCPU)

Who changed what in which revision?

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