OSDN Git Service

First commitment for the BlackTank LPC1769.
[blacktank/blacktank.git] / testpin.h
1 /**
2  * @file testpin.h
3  * @author Shinichiro Nakamura
4  * @brief テストピン制御ライブラリの定義。
5  */
6
7 #ifndef TESTPIN_H
8 #define TESTPIN_H
9
10 void testpin_init(void);
11 void testpin_tp1_write(uint8_t on);
12 void testpin_tp2_write(uint8_t on);
13 void testpin_tp1_toggle(void);
14 void testpin_tp2_toggle(void);
15
16 #endif
17