-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdip_switch.h
76 lines (59 loc) · 1.06 KB
/
dip_switch.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
/*
* Header file for the DIP Switch peripheral
*
*
*/
#ifndef _DIP_SWITCH_H_
#define _DIP_SWITCH_H_
#include "miniat/miniat.h"
#include "SDL/edison_dipswitch.h"
typedef struct dip_switch dip_switch;
/*
* Creates a new DIP Switch peripheral, setting it's address
* to "address" for the miniAT
*
*
*
*/
extern dip_switch *dip_switch_new(m_uword address);
/*
* Free's the memory address for the DIP Switch passed
* as argument
*
*
*
*/
extern void dip_switch_free(dip_switch *switches);
/*
* Clock function
*
* This will update the current value for the DIP Switch
*
*
*/
extern void dip_switch_clock(dip_switch *switches, edison_dipswitch *edison_switches);
/*
* Tries to connect the DIP Switch with the bus
*
*
*
*
*/
extern void dip_switch_bus_connector_set(dip_switch *switches, m_bus *bus);
/*
* Sets the DIP Switch bus
*
*
*
*
*/
extern m_bus dip_switch_get_bus(dip_switch *switches);
/*
* boolToBin
*
* This functions transforms an array of booleans
* in a binary integer
*
*/
extern int boolToDecimal(bool *states);
#endif