summaryrefslogtreecommitdiff
path: root/src/drivers/ao_ads124s0x.c
blob: e779b29394f117c56f15a37c08994687feb8da89 (plain) (blame)
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
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
/*
 * Copyright © 2019 Bdale Garbee <bdale@gag.com>
 *
 * 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 2 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.
 */

#include <ao.h>
#include "ao_ads124s0x.h"

#define DEBUG_LOW	1
#define DEBUG_HIGH	2

#define DEBUG		0

#if DEBUG
#define PRINTD(l, ...) do { if (DEBUG & (l)) { printf ("\r%5u %s: ", ao_tick_count, __func__); printf(__VA_ARGS__); flush(); } } while(0)
#else
#define PRINTD(l,...)
#endif

struct ao_ads124s0x_sample	ao_ads124s0x_current;

static void
ao_ads124s0x_start(void) {
	ao_spi_get_bit(AO_ADS124S0X_SPI_CS_PORT,
		       AO_ADS124S0X_SPI_CS_PIN,
		       AO_ADS124S0X_SPI_BUS,
		       AO_ADS124S0X_SPI_SPEED);
}

static void
ao_ads124s0x_stop(void) {
	ao_spi_put_bit(AO_ADS124S0X_SPI_CS_PORT,
		       AO_ADS124S0X_SPI_CS_PIN,
		       AO_ADS124S0X_SPI_BUS);
}

/*
static uint8_t
ao_ads124s0x_reg_read(uint8_t addr)
{
	uint8_t	d[2];

	d[0] = addr | AO_ADS124S0X_RREG;
	d[1] = 0;			
	ao_ads124s0x_start();
	ao_spi_duplex(d, d, 2, AO_ADS124S0X_SPI_BUS);
	ao_ads124s0x_stop();

	PRINTD(DEBUG_LOW, "read %x = %x\n", addr, d);

	return d[1];
}

static void
ao_ads124s0x_reg_write(uint8_t addr, uint8_t value)
{
	uint8_t	d[3];

	PRINTD(DEBUG_LOW, "write %x %x\n", addr, value);
	d[0] = addr | AO_ADS124S0X_WREG;
	d[1] = 0;			
	d[2] = value;
	ao_ads124s0x_start();
	ao_spi_send(d, 3, AO_ADS124S0X_SPI_BUS);
	ao_ads124s0x_stop();

#if DEBUG & DEBUG_LOW
	d[0] = addr | AO_ADS124S0X_RREG
	d[1] = 0;
	ao_ads124s0x_start();
	ao_spi_duplex(d, d, 2, AO_ADS124S0X_SPI_BUS);
	ao_ads124s0x_stop();
	PRINTD(DEBUG_LOW, "readback %x %x\n", d[0], d[1]);
#endif
}
*/

// FIXME 
//	We need to be in continuous conversion mode, and use the WREG
//	command to set the next conversion input while reading each 
//	which I don't see an example for elsewhere?

static void
ao_ads124s0x_setup(void)
{
	uint8_t	d[20];

/*	we have nowhere to report this error to since ao_sensor_errors is
	normally part of ao_flight?

	uint8_t	devid = ao_ads124s0x_reg_read(AO_ADS124S0X_ID);
	if (devid != AO_ADS124S0X_ID_ADS124S06)
		ao_sensor_errors = 1;
*/

	/* 1ksps each across 4 inputs using full duplex ala 9.5.4.3 */

	d[0] = AO_ADS124S0X_INPMUX | AO_ADS124S0X_WREG;
	d[1] = 8;	/* write 8 registers starting with INPMUX */
	d[2] = 0x0c;	/* input mux AIN0 relative to AINCOM */
	d[3] = 0x00;	/* default first conversion delay, pga disabled */
	d[4] = 0x1e;	/* gchop disabled, internal clock, continuous 
			   conversion, low-latency filter, 4000 SPS */
	d[5] = 0x00;	/* ref monitor disabled, ref buffers bypassed, ref 
			   set to REFP0/REFN0, internal reference off */
	d[6] = 0x00;	/* pga otuput rail, low side power switch, excitation
			   current source all off */
	d[7] = 0xff;	/* idac1 and idac2 disconnected */
	d[8] = 0x00;	/* all vbias disconnected */
	d[9] = 0x10;	/* sys monitor off, spi timeout disabled, crc disabled,
			   prepending status byte disabled */
	ao_ads124s0x_start();
	ao_spi_send(d, 10, AO_ADS124S0X_SPI_BUS);
	ao_ads124s0x_stop();

	/* start conversions */
	
	d[0] = AO_ADS124S0X_START;
	ao_ads124s0x_start();
	ao_spi_send(d, 1, AO_ADS124S0X_SPI_BUS);
	ao_ads124s0x_stop();
}

static void
ao_ads124s0x(void)
{
	ao_ads124s0x_setup();
/*
	for (;;) {
		ao_ads124s0x_value(&ao_ads124s0x_current);
		ao_arch_critical(
			AO_DATA_PRESENT(AO_DATA_ADS124S0X);
			AO_DATA_WAIT();
			);
	}
*/
}

static struct ao_task ao_ads124s0x_task;

static void
ao_ads124s0x_dump(void)			// FIXME
{
	printf ("ADS124S0X value %d %d %d %d\n",
		ao_ads124s0x_current.ain0,
		ao_ads124s0x_current.ain1,
		ao_ads124s0x_current.ain2,
		ao_ads124s0x_current.ain3);
}

const struct ao_cmds ao_ads124s0x_cmds[] = {
	{ ao_ads124s0x_dump,	"I\0Display ADS124S0X data" },
	{ 0, NULL },
};

void
ao_ads124s0x_init(void)
{
	ao_cmd_register(ao_ads124s0x_cmds);
	ao_spi_init_cs(AO_ADS124S0X_SPI_CS_PORT, 
		(1 << AO_ADS124S0X_SPI_CS_PIN));

	ao_add_task(&ao_ads124s0x_task, ao_ads124s0x, "ads124s0x");
}