OSDN Git Service

Renamed the first sample project.
[kozos-expbrd/kozos_expbrd.git] / firm / sample / simple_mp3_player / bootload / sw.h
1 #ifndef _SW_H_INCLUDED_
2 #define _SW_H_INCLUDED_
3
4 #include "defines.h"
5
6 typedef enum {
7     Sw1,
8     Sw2,
9     SwRe,
10 } sw_target_t;
11
12 int sw_init(void);
13 uint8 sw_read(sw_target_t target);
14
15 #endif
16