summaryrefslogtreecommitdiffstats
path: root/pressure_control/firmware/valves.c
blob: 700760ab5ab2b4b31d71b50ae79c6da0c7361963 (plain)
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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
/*
 *  Pneumatic pressure controller.
 *  Valve control.
 *
 *  Copyright (C) 2008-2009 Michael Buesch <mb@bu3sch.de>
 *
 *  This program is free software: you can redistribute it and/or modify
 *  it under the terms of the GNU General Public License as published by
 *  the Free Software Foundation, either version 3 of the License, or
 *  (at your option) any later version.
 *
 *  This program is distributed in the hope that it will be useful,
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *  GNU General Public License for more details.
 *
 *  You should have received a copy of the GNU General Public License
 *  along with this program.  If not, see <http://www.gnu.org/licenses/>.
 */

#include "valves.h"
#include "util.h"
#include "main.h"

#include <avr/io.h>


/*** Valve interface definitions ***/
#define VALVE_DDR		DDRD
#define VALVE_PORT		PORTD
#define VALVE0_14		6 /* Pin for valve-0 position 14 */
#define VALVE0_12		7 /* Pin for valve-0 position 12 */
#define VALVE1_14		4 /* Pin for valve-1 position 14 */
#define VALVE1_12		5 /* Pin for valve-1 position 12 */


static uint8_t current_global_state = 0xFF;
static bool need_switch_to_idle;
static jiffies_t switch_to_idle_time;


void valve0_switch(uint8_t state)
{
	VALVE_PORT &= ~((1 << VALVE0_12) | (1 << VALVE0_14));
	if (state == VALVE_STATE_12)
		VALVE_PORT |= (1 << VALVE0_12);
	else if (state == VALVE_STATE_14)
		VALVE_PORT |= (1 << VALVE0_14);
}

void valve1_switch(uint8_t state)
{
	VALVE_PORT &= ~((1 << VALVE1_12) | (1 << VALVE1_14));
	if (state == VALVE_STATE_12)
		VALVE_PORT |= (1 << VALVE1_12);
	else if (state == VALVE_STATE_14)
		VALVE_PORT |= (1 << VALVE1_14);
}

void valves_global_switch(uint8_t state)
{
	if (state != current_global_state)
		__valves_global_switch(state);
}

void __valves_global_switch(uint8_t state)
{
	switch (state) {
	case VALVES_IDLE:
		valve0_switch(VALVE_STATE_12);
		valve1_switch(VALVE_STATE_12);
		break;
	case VALVES_FLOW_IN:
		valve1_switch(VALVE_STATE_12);
		valve0_switch(VALVE_STATE_14);
		break;
	case VALVES_FLOW_OUT:
		valve0_switch(VALVE_STATE_12);
		valve1_switch(VALVE_STATE_14);
		break;
	}
	switch_to_idle_time = get_jiffies() + msec_to_jiffies(VALVE_TOGGLE_MSEC);
	need_switch_to_idle = 1;
	current_global_state = state;
}

void valves_disarm_auto_idle(void)
{
	need_switch_to_idle = 0;
}

void valves_work(void)
{
	if (need_switch_to_idle &&
	    time_after(get_jiffies(), switch_to_idle_time)) {
		need_switch_to_idle = 0;
		valve0_switch(VALVE_STATE_IDLE);
		valve1_switch(VALVE_STATE_IDLE);
	}
}

uint8_t valves_get_global_state(void)
{
	return current_global_state;
}

static inline void valves_ddr_setup(void)
{
	VALVE_DDR |= (1 << VALVE0_12) | (1 << VALVE0_14) |
		     (1 << VALVE1_12) | (1 << VALVE1_14);
}

void valves_shutdown(void)
{
	__valves_global_switch(VALVES_FLOW_OUT);
	valve_wait_toggle();
	valve0_switch(VALVE_STATE_IDLE);
	valve1_switch(VALVE_STATE_IDLE);
}

void valves_emergency_state(void)
{
	valves_ddr_setup();
	__valves_global_switch(VALVES_IDLE);
	valve_wait_toggle();
	valve0_switch(VALVE_STATE_IDLE);
	valve1_switch(VALVE_STATE_IDLE);
}

void valves_init(void)
{
	valves_ddr_setup();
	__valves_global_switch(VALVES_IDLE);
}
bues.ch cgit interface