LPC824専用プログラム

Dependencies:   Ping SDFileSystem mbed-src

format.h

Committer:
lilac0112_1
Date:
2016-02-25
Revision:
16:f0d3e58b3ca5
Parent:
10:641da47d4a14

File content as of revision 16:f0d3e58b3ca5:

#ifndef _FORMAT_H_
#define _FORMAT_H_

#ifdef SD_CARD
void Sd_System(void);
#endif /*SD_CARD*/

#ifdef ULTRA_SONIC
void Usw_System(void);
#endif /*ULTRA_SONIC*/

#ifdef COLOR_SENSOR
void Color_System(void);
#endif /*COLOR_SENSOR*/

#ifdef IR_SENSOR
void Ir_System(void);
uint16_t read_input(uint8_t ic, uint8_t channel);
uint8_t read_position(uint8_t ic, uint8_t channel);
void BubbleSort(uint16_t *data, uint8_t *data2, uint8_t n);//昇順にする.tkb
#endif /*IR_SENSOR*/

#endif /*_FORMAT_H_*/