lotus: Implement ADC on correct pin
Verified with potentiometer knob. Voltage goes from 0.1V to 3.1. Signed-off-by: Daniel Schaefer <git@danielschaefer.me>
This commit is contained in:
parent
4eb191c845
commit
877e2f9ace
@ -12,30 +12,73 @@
|
||||
#include "chprintf.h"
|
||||
#include "matrix.h"
|
||||
|
||||
#define ADC_THRESHOLD 3
|
||||
#define LED_GREEN_PIN 25U
|
||||
|
||||
#define ADC_RESOLUTION 10
|
||||
#define ADC_GRP_NUM_CHANNELS 2
|
||||
#define ADC_GRP_BUF_DEPTH 2
|
||||
adcsample_t samples[CACHE_SIZE_ALIGN(adcsample_t, ADC_GRP_NUM_CHANNELS * 2)];
|
||||
//static adcsample_t prev_samples[CACHE_SIZE_ALIGN(adcsample_t, ADC_GRP_NUM_CHANNELS * 2)];
|
||||
static adcsample_t samples[CACHE_SIZE_ALIGN(adcsample_t, ADC_GRP_NUM_CHANNELS * 2)];
|
||||
static bool new_sample = false;
|
||||
|
||||
// 3.3V with 12bit resolution
|
||||
const float CONV_FACTOR = 3.3f / (1<<12);
|
||||
|
||||
// Mux GPIOs
|
||||
#define MUX_A 1
|
||||
#define MUX_B 2
|
||||
#define MUX_C 3
|
||||
#define MUX_ENABLE 4
|
||||
|
||||
#define ADC_CH0_PIN GP26
|
||||
#define ADC_CH1_PIN GP27
|
||||
#define ADC_CH2_PIN GP28
|
||||
#define ADC_THRESHOLD 3.0 / CONV_FACTOR
|
||||
|
||||
#define CALC_DIGITS 12
|
||||
char calc_result[CALC_DIGITS+1] = "";
|
||||
|
||||
|
||||
/*
|
||||
* Print two digits
|
||||
*/
|
||||
void print_float(float temp) {
|
||||
void print_float(float f) {
|
||||
// dtostrf doesn't seem to be available
|
||||
//dtostrf(temp, CALC_DIGITS, 2, calc_result);
|
||||
//uprintf("temp: %s\n", calc_result);
|
||||
int digits = (int)temp;
|
||||
int decimals = (int)(temp * 100) % 100;
|
||||
uprintf("temp: %d.%d\n", digits, decimals);
|
||||
int digits = (int)f;
|
||||
int decimals = (int)(f * 100) % 100;
|
||||
uprintf("%d.%d\n", digits, decimals);
|
||||
}
|
||||
|
||||
float average_samples(adcsample_t s[], int channel) {
|
||||
float sum = 0;
|
||||
for (int i = 0; i < ADC_GRP_NUM_CHANNELS; i++) {
|
||||
sum += (float)s[channel + (i * ADC_GRP_BUF_DEPTH)];
|
||||
}
|
||||
return sum / ADC_GRP_BUF_DEPTH;
|
||||
}
|
||||
|
||||
void print_samples(adcsample_t s[]) {
|
||||
// Samples go from 0 to 4096
|
||||
uprintf("Raw ADC samples: %d, %d, %d, %d\n", s[0], s[1], s[2], s[3]);
|
||||
|
||||
float adv_avg = average_samples(s, 0);
|
||||
float temp_avg = average_samples(s, 1);
|
||||
|
||||
// Convert them to voltage (0 to 3.3V)
|
||||
float adc_v = adv_avg * CONV_FACTOR;
|
||||
float temp_v = temp_avg * CONV_FACTOR;
|
||||
// Convert to real temperature based on RP2040 datasheet
|
||||
double temp = 27.0 - (temp_v - 0.706)/0.001721;
|
||||
|
||||
print("Temp: ");
|
||||
print_float(temp);
|
||||
|
||||
uprintf("ADC Voltage: ");
|
||||
print_float(adc_v);
|
||||
}
|
||||
|
||||
void handle_sample(void) {
|
||||
//print_samples(prev_samples);
|
||||
print_samples(samples);
|
||||
}
|
||||
|
||||
/*
|
||||
@ -43,15 +86,9 @@ void print_float(float temp) {
|
||||
*/
|
||||
void adc_end_callback(ADCDriver *adcp) {
|
||||
(void)adcp;
|
||||
uprintf("ADC end cb samples: %d, %d, %d, %d\n", samples[0], samples[1], samples[2], samples[3]);
|
||||
uprintf("temp sample: %d\n", samples[1]);
|
||||
float raw_temp = (float)samples[1] * CONV_FACTOR;
|
||||
double temp = 27.0 - (raw_temp - 0.706)/0.001721;
|
||||
print_float(temp);
|
||||
|
||||
uint16_t val = (*samples) >> (12 - ADC_RESOLUTION);
|
||||
uprintf("val: %d\n", val);
|
||||
print("\n");
|
||||
new_sample = true;
|
||||
|
||||
handle_sample();
|
||||
}
|
||||
|
||||
/*
|
||||
@ -62,327 +99,229 @@ void adc_error_callback(ADCDriver *adcp, adcerror_t err) {
|
||||
uprintf("error: %ld\n", err);
|
||||
}
|
||||
|
||||
const ADCConversionGroup adcConvGroup = {
|
||||
.circular = false,
|
||||
.num_channels = ADC_GRP_NUM_CHANNELS,
|
||||
.end_cb = &adc_end_callback,
|
||||
.error_cb = &adc_error_callback,
|
||||
// CH2 is the keyboard matrix, CH4 is the temp sensor
|
||||
.channel_mask = RP_ADC_CH2 | RP_ADC_CH4,
|
||||
};
|
||||
|
||||
// If adcConvGroup.circular is true, this will just keep going
|
||||
void trigger_adc(void) {
|
||||
print("Triggered ADC\n");
|
||||
const ADCConfig adcConfig = {
|
||||
0, // div_int
|
||||
0, // div_frac
|
||||
false, // shift
|
||||
};
|
||||
|
||||
const ADCConversionGroup adcConvGroup = {
|
||||
false, // circular
|
||||
2, // num_channels
|
||||
&adc_end_callback, // end_cb
|
||||
&adc_error_callback, // error_cb
|
||||
RP_ADC_CH0 | RP_ADC_CH4, // channel_mask
|
||||
};
|
||||
|
||||
adcStart(&ADCD1, &adcConfig);
|
||||
|
||||
/* Enable temperature sensor. */
|
||||
adcRPEnableTS(&ADCD1);
|
||||
|
||||
//adcsample_t buf[4] = {0, 0, 0, 0};
|
||||
|
||||
print("--\n");
|
||||
chThdSleepMilliseconds(100);
|
||||
print("adcStartConversion\n");
|
||||
adcStartConversion(&ADCD1, &adcConvGroup, (adcsample_t *)&samples, 2);
|
||||
/*
|
||||
* Normal main() thread activity, in this demo it does nothing except
|
||||
* sleeping in a loop.
|
||||
*/
|
||||
while (true) {
|
||||
chThdSleepMilliseconds(500);
|
||||
uprintf("samples: %d, %d, %d, %d\n", samples[0], samples[1], samples[2], samples[3]);
|
||||
if (!adcConvGroup.circular) {
|
||||
print("adcStartConversion\n");
|
||||
adcStartConversion(&ADCD1, &adcConvGroup, (adcsample_t *)&samples, 2);
|
||||
}
|
||||
}
|
||||
print("Triggered ADC\n");
|
||||
adcStartConversion(&ADCD1, &adcConvGroup,
|
||||
samples, ADC_GRP_BUF_DEPTH);
|
||||
}
|
||||
|
||||
/*
|
||||
* Green LED blinker thread, times are in milliseconds.
|
||||
*/
|
||||
//static CH_SYS_CORE0_MEMORY THD_WORKING_AREA(waThread1, 128);
|
||||
//static THD_FUNCTION(Thread1, arg) {
|
||||
// (void)arg;
|
||||
// chRegSetThreadName("blinker");
|
||||
// while (true) {
|
||||
// backlight_enable();
|
||||
// chThdSleepMilliseconds(500);
|
||||
// backlight_disable();
|
||||
// chThdSleepMilliseconds(500);
|
||||
// }
|
||||
//}
|
||||
//
|
||||
///*
|
||||
// * Call back function which called when ADC is finished.
|
||||
// */
|
||||
//void adc_end_callback(ADCDriver *adcp) {
|
||||
// (void)adcp;
|
||||
// backlight_enable();
|
||||
// uprintf("ADC end cb\n");
|
||||
//}
|
||||
//
|
||||
///*
|
||||
// * Call back function which called when ADC gives some error.
|
||||
// */
|
||||
//void adc_error_callback(ADCDriver *adcp, adcerror_t err) {
|
||||
// (void)adcp;
|
||||
// uprintf("error: %ld\n", err);
|
||||
//}
|
||||
//
|
||||
//const ADCConversionGroup adcConvGroup = {
|
||||
// .circular = false,
|
||||
// .num_channels = ADC_GRP_NUM_CHANNELS,
|
||||
// .end_cb = &adc_end_callback,
|
||||
// .error_cb = &adc_error_callback,
|
||||
// // CH0 is the keyboard matrix ADC, CH4 is the temp sensor
|
||||
// .channel_mask = RP_ADC_CH0 | RP_ADC_CH4,
|
||||
//};
|
||||
|
||||
/**
|
||||
* Tell RP2040 ADC controller to initialize a specific GPIO for ADC input
|
||||
*/
|
||||
void adc_gpio_init(int gpio) {
|
||||
assert(gpio >= 26 && gpio <= 29);
|
||||
assert(gpio >= GP26 && gpio <= GP28);
|
||||
palSetLineMode(gpio, PAL_MODE_INPUT_ANALOG);
|
||||
}
|
||||
|
||||
/**
|
||||
* Tell RP2040 ADC controller to read from a specific ADC channel
|
||||
*/
|
||||
void adc_select_input(int adc_channel) {
|
||||
assert(adc_channel >= 0 && adc_channel <= 4);
|
||||
// TODO: Implement
|
||||
}
|
||||
|
||||
// Mux GPIOs
|
||||
#define MUX_A 1
|
||||
#define MUX_B 2
|
||||
#define MUX_C 3
|
||||
#define MUX_ENABLE 4
|
||||
// Mux output
|
||||
#define ADC_IN 28
|
||||
|
||||
#define ADC_CH0_PIN 26U
|
||||
#define ADC_CH1_PIN 27U
|
||||
#define ADC_CH2_PIN 28U
|
||||
|
||||
#ifndef PICO_LOTUS
|
||||
/**
|
||||
* Tell the mux to select a specific column
|
||||
*
|
||||
* Splits the positive integer (<=7) into its three component bits.
|
||||
*/
|
||||
//static void mux_select_row(int row) {
|
||||
// assert(col >= 0 && col <= 7);
|
||||
//
|
||||
// // Not in order - need to remap them
|
||||
// // X0 - KSI1
|
||||
// // X1 - KSI2
|
||||
// // X2 - KSI0
|
||||
// // X3 - KSI3
|
||||
// // X4 - KSI4
|
||||
// // X5 - KSI5
|
||||
// // X6 - KSI6
|
||||
// // X7 - KSI7
|
||||
// int index = 0;
|
||||
// switch (row) {
|
||||
// case 0:
|
||||
// index = 2;
|
||||
// case 1:
|
||||
// index = 0;
|
||||
// case 2:
|
||||
// index = 1;
|
||||
// default:
|
||||
// index = row;
|
||||
// }
|
||||
//
|
||||
// int bits[] = {
|
||||
// (index & 0x1) > 0,
|
||||
// (index & 0x4) > 0,
|
||||
// (index & 0x8) > 0
|
||||
// };
|
||||
// writePin(MUX_A, bits[0]);
|
||||
// writePin(MUX_B, bits[1]);
|
||||
// writePin(MUX_C, bits[2]);
|
||||
//}
|
||||
//static uint16_t adc_read(void) { return 0; }
|
||||
static void mux_select_row(int row) {
|
||||
assert(col >= 0 && col <= 7);
|
||||
|
||||
// Not in order - need to remap them
|
||||
// X0 - KSI1
|
||||
// X1 - KSI2
|
||||
// X2 - KSI0
|
||||
// X3 - KSI3
|
||||
// X4 - KSI4
|
||||
// X5 - KSI5
|
||||
// X6 - KSI6
|
||||
// X7 - KSI7
|
||||
int index = 0;
|
||||
switch (row) {
|
||||
case 0:
|
||||
index = 2;
|
||||
case 1:
|
||||
index = 0;
|
||||
case 2:
|
||||
index = 1;
|
||||
default:
|
||||
index = row;
|
||||
}
|
||||
|
||||
int bits[] = {
|
||||
(index & 0x1) > 0,
|
||||
(index & 0x4) > 0,
|
||||
(index & 0x8) > 0
|
||||
};
|
||||
writePin(MUX_A, bits[0]);
|
||||
writePin(MUX_B, bits[1]);
|
||||
writePin(MUX_C, bits[2]);
|
||||
}
|
||||
static uint16_t adc_read(void) { return 0; }
|
||||
|
||||
/**
|
||||
* Based on the adc value, update the matrix for this column
|
||||
* */
|
||||
//static bool interpret_adc_row(matrix_row_t cur_matrix[], uint16_t adc_value, int col, int row) {
|
||||
// bool changed = false;
|
||||
//
|
||||
// // TODO: Convert adc value to voltage
|
||||
// uint16_t voltage = adc_value;
|
||||
//
|
||||
// // By default the voltage is high (3.3V)
|
||||
// // When a key is pressed it causes the voltage to go down.
|
||||
// // But because every key is connected in a matrix, pressing multiple keys
|
||||
// // changes the voltage at every key again. So we can't check for a specific
|
||||
// // voltage but need to have a threshold.
|
||||
// uint8_t key_state = 0;
|
||||
// if (voltage < ADC_THRESHOLD) {
|
||||
// key_state = 1;
|
||||
// }
|
||||
//
|
||||
// uprintf("Col %d - Row %d - ADC value:%04X, Voltage: %d\n", col, row, adc_value, voltage);
|
||||
// cur_matrix[row] |= key_state ? 0 : (1 << col);
|
||||
//
|
||||
// return changed;
|
||||
//}
|
||||
static bool interpret_adc_row(matrix_row_t cur_matrix[], uint16_t adc_value, int col, int row) {
|
||||
bool changed = false;
|
||||
|
||||
//void drive_col(int col, bool high) {
|
||||
// assert(col >= 0 && col <= MATRIX_COLS);
|
||||
// int gpio = 0;
|
||||
// switch (col) {
|
||||
// case 0:
|
||||
// gpio = 8;
|
||||
// break;
|
||||
// case 1:
|
||||
// gpio = 9;
|
||||
// break;
|
||||
// case 2:
|
||||
// gpio = 10;
|
||||
// break;
|
||||
// case 3:
|
||||
// gpio = 11;
|
||||
// break;
|
||||
// case 4:
|
||||
// gpio = 12;
|
||||
// break;
|
||||
// case 5:
|
||||
// gpio = 13;
|
||||
// break;
|
||||
// case 6:
|
||||
// gpio = 14;
|
||||
// break;
|
||||
// case 7:
|
||||
// gpio = 15;
|
||||
// break;
|
||||
// case 8:
|
||||
// gpio = 21;
|
||||
// break;
|
||||
// case 9:
|
||||
// gpio = 20;
|
||||
// break;
|
||||
// case 10:
|
||||
// gpio = 19;
|
||||
// break;
|
||||
// case 11:
|
||||
// gpio = 18;
|
||||
// break;
|
||||
// case 12:
|
||||
// gpio = 17;
|
||||
// break;
|
||||
// case 13:
|
||||
// gpio = 16;
|
||||
// break;
|
||||
// default:
|
||||
// // Not supposed to happen
|
||||
// assert(false);
|
||||
// return;
|
||||
// }
|
||||
//
|
||||
// if (high) {
|
||||
// // TODO: Could set up the pins with `setPinOutputOpenDrain` instead
|
||||
// writePinHigh(gpio);
|
||||
// } else {
|
||||
// writePinLow(gpio);
|
||||
// }
|
||||
//}
|
||||
// TODO: Convert adc value to voltage
|
||||
uint16_t voltage = adc_value;
|
||||
|
||||
// By default the voltage is high (3.3V)
|
||||
// When a key is pressed it causes the voltage to go down.
|
||||
// But because every key is connected in a matrix, pressing multiple keys
|
||||
// changes the voltage at every key again. So we can't check for a specific
|
||||
// voltage but need to have a threshold.
|
||||
uint8_t key_state = 0;
|
||||
if (voltage < ADC_THRESHOLD) {
|
||||
key_state = 1;
|
||||
}
|
||||
|
||||
uprintf("Col %d - Row %d - ADC value:%04X, Voltage: %d\n", col, row, adc_value, voltage);
|
||||
cur_matrix[row] |= key_state ? 0 : (1 << col);
|
||||
|
||||
return changed;
|
||||
}
|
||||
|
||||
void drive_col(int col, bool high) {
|
||||
assert(col >= 0 && col <= MATRIX_COLS);
|
||||
int gpio = 0;
|
||||
switch (col) {
|
||||
case 0:
|
||||
gpio = 8;
|
||||
break;
|
||||
case 1:
|
||||
gpio = 9;
|
||||
break;
|
||||
case 2:
|
||||
gpio = 10;
|
||||
break;
|
||||
case 3:
|
||||
gpio = 11;
|
||||
break;
|
||||
case 4:
|
||||
gpio = 12;
|
||||
break;
|
||||
case 5:
|
||||
gpio = 13;
|
||||
break;
|
||||
case 6:
|
||||
gpio = 14;
|
||||
break;
|
||||
case 7:
|
||||
gpio = 15;
|
||||
break;
|
||||
case 8:
|
||||
gpio = 21;
|
||||
break;
|
||||
case 9:
|
||||
gpio = 20;
|
||||
break;
|
||||
case 10:
|
||||
gpio = 19;
|
||||
break;
|
||||
case 11:
|
||||
gpio = 18;
|
||||
break;
|
||||
case 12:
|
||||
gpio = 17;
|
||||
break;
|
||||
case 13:
|
||||
gpio = 16;
|
||||
break;
|
||||
default:
|
||||
// Not supposed to happen
|
||||
assert(false);
|
||||
return;
|
||||
}
|
||||
|
||||
if (high) {
|
||||
// TODO: Could set up the pins with `setPinOutputOpenDrain` instead
|
||||
writePinHigh(gpio);
|
||||
} else {
|
||||
writePinLow(gpio);
|
||||
}
|
||||
}
|
||||
#endif // PICO_LOTUS
|
||||
|
||||
/**
|
||||
* Overriding behavior of matrix_scan from quantum/matrix.c
|
||||
*/
|
||||
//bool matrix_scan_custom(matrix_row_t current_matrix[]) {
|
||||
// bool changed = false;
|
||||
//
|
||||
// chThdSleepMilliseconds(500);
|
||||
// //chprintf((BaseSequentialStream *)&SIOD0, "MERRY CHRISTMAS!");
|
||||
// uprintf("hi :)))\n");
|
||||
// uprintf(" samples: %d, %d, %d, %d\n", samples[0], samples[1], samples[2], samples[3]);
|
||||
// uprintf(" hello???\n");
|
||||
// //if (!adcConvGroup.circular) {
|
||||
// // uprintf(" before adcStartConversion\n");
|
||||
// // //adcStartConversion(&ADCD1, &adcConvGroup, (adcsample_t *)&samples, 2);
|
||||
// // uprintf(" after adcStartConversion\n");
|
||||
// //}
|
||||
// uprintf(" end of matrix_scan_custom\n");
|
||||
//
|
||||
// for (int col = 0; col < MATRIX_COLS; col++) {
|
||||
// break;
|
||||
// // Drive column low so we can measure the resistors on each row in this column
|
||||
// drive_col(col, false);
|
||||
// for (int row = 0; row <= MATRIX_ROWS; row++) {
|
||||
//
|
||||
// // Read ADC for this row
|
||||
// mux_select_row(row);
|
||||
//
|
||||
// wait_us(30); // Wait for column select and ADC to settle
|
||||
//
|
||||
// uint16_t adc_value = 0;//adc_read();
|
||||
//
|
||||
// // Interpret ADC value as rows
|
||||
// changed |= interpret_adc_row(current_matrix, adc_value, col, row);
|
||||
// }
|
||||
//
|
||||
// // Drive column high again
|
||||
// drive_col(col, true);
|
||||
// }
|
||||
//
|
||||
// return changed;
|
||||
//}
|
||||
bool matrix_scan_custom(matrix_row_t current_matrix[]) {
|
||||
bool changed = false;
|
||||
|
||||
#ifdef PICO_LOTUS
|
||||
uprintf("scan\n");
|
||||
adcStartConversion(&ADCD1, &adcConvGroup,
|
||||
samples, ADC_GRP_BUF_DEPTH);
|
||||
chThdSleepMilliseconds(500);
|
||||
#else
|
||||
for (int col = 0; col < MATRIX_COLS; col++) {
|
||||
break;
|
||||
// Drive column low so we can measure the resistors on each row in this column
|
||||
drive_col(col, false);
|
||||
for (int row = 0; row <= MATRIX_ROWS; row++) {
|
||||
|
||||
// Read ADC for this row
|
||||
mux_select_row(row);
|
||||
|
||||
wait_us(30); // Wait for column select and ADC to settle
|
||||
|
||||
uint16_t adc_value = 0;//adc_read();
|
||||
|
||||
// Interpret ADC value as rows
|
||||
changed |= interpret_adc_row(current_matrix, adc_value, col, row);
|
||||
}
|
||||
|
||||
// Drive column high again
|
||||
drive_col(col, true);
|
||||
}
|
||||
#endif // PICO_LOTUS
|
||||
|
||||
return changed;
|
||||
}
|
||||
|
||||
/**
|
||||
* Enable the ADC MUX
|
||||
*
|
||||
* TODO: Do we need a de-init? Probably not.
|
||||
*/
|
||||
//static void adc_mux_init(void) {
|
||||
// writePinHigh(MUX_ENABLE);
|
||||
//}
|
||||
static void adc_mux_init(void) {
|
||||
#ifndef PICO_LOTUS
|
||||
writePinHigh(MUX_ENABLE);
|
||||
#endif
|
||||
}
|
||||
|
||||
/**
|
||||
* Overriding behavior of matrix_init from quantum/matrix.c
|
||||
*/
|
||||
void matrix_init_custom(void) {
|
||||
print("Initializing Lotus\n");
|
||||
//adc_mux_init();
|
||||
backlight_enable(); // To signal "live-ness"
|
||||
|
||||
////setPinOutput(LED_GREEN_PIN);
|
||||
////writePinHigh(LED_GREEN_PIN);
|
||||
adc_mux_init();
|
||||
adc_gpio_init(ADC_CH2_PIN);
|
||||
|
||||
///*
|
||||
//* Creates the blinker thread.
|
||||
//*/
|
||||
//chThdCreateStatic(waThread1, sizeof(waThread1), NORMALPRIO, Thread1, NULL);
|
||||
const ADCConfig adcConfig = {
|
||||
.div_int = 0,
|
||||
.div_frac = 0,
|
||||
.shift = false,
|
||||
};
|
||||
adcStart(&ADCD1, &adcConfig);
|
||||
|
||||
//// Make sure GPIO is high-impedance, no pullups etc
|
||||
adc_gpio_init(ADC_CH0_PIN);
|
||||
// For testing enable temp sensor
|
||||
adcRPEnableTS(&ADCD1);
|
||||
|
||||
////// Handled by adc_read and analogReadPin
|
||||
//const ADCConfig adcConfig = {
|
||||
// .div_int = 0,
|
||||
// .div_frac = 0,
|
||||
// .shift = false,
|
||||
//};
|
||||
//adcStart(&ADCD1, &adcConfig);
|
||||
// Start automatic conversion
|
||||
chThdSleepMilliseconds(100);
|
||||
trigger_adc();
|
||||
|
||||
////// For testing enable temp sensor
|
||||
//adcRPEnableTS(&ADCD1);
|
||||
|
||||
//backlight_enable();
|
||||
|
||||
//chThdSleepMilliseconds(100);
|
||||
////adcStartConversion(&ADCD1, &adcConvGroup,
|
||||
//// samples, ADC_GRP_BUF_DEPTH);
|
||||
|
||||
//// TODO: Not sure we ever need to stop. Perhaps to save power.
|
||||
//// adcStopConversion(&ADCD1);
|
||||
// TODO: Not sure we ever need to stop. Perhaps to save power.
|
||||
// adcStopConversion(&ADCD1);
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user