mirror of
https://github.com/ole00/afterburner.git
synced 2024-10-31 14:05:10 +00:00
4db4108d4a
New features: * unified socket for 20 pin and 24 devices (including GAL20V8) * variable VPP via digi pot * VPP measurement via A0 ADC (used for VPP calibration)
118 lines
2.8 KiB
C
118 lines
2.8 KiB
C
//MCP4131 digital pot - bitbanged control
|
|
|
|
//set default pins
|
|
#ifndef POT_CS
|
|
#define POT_CS A3
|
|
#endif
|
|
|
|
#ifndef POT_CLK
|
|
#define POT_CLK A4
|
|
#endif
|
|
|
|
#ifndef POT_DAT
|
|
#define POT_DAT A5
|
|
#endif
|
|
|
|
#ifndef POT_DEFAULT_VALUE
|
|
#define POT_DEFAULT_VALUE 0x40
|
|
#endif
|
|
|
|
#ifndef POT_WIPER_ENABLED
|
|
#define POT_WIPER_ENABLED 0
|
|
#endif
|
|
|
|
#define ADDR_WIPER 0
|
|
#define ADDR_WIPER0 0
|
|
#define ADDR_WIPER1 1
|
|
#define ADDR_TCON 4
|
|
#define ADDR_STAT 5
|
|
#define CMD_READ (0b11 << 10)
|
|
|
|
#define mcp4131_disableWiper() mcp4131_write(ADDR_TCON, 0b111111101)
|
|
#define mcp4131_enableWiper() mcp4131_write(ADDR_TCON, 0b111111111)
|
|
#define mcp4131_read(A) mcp4131_reg((A),0,1)
|
|
#define mcp4131_write(A,V) mcp4131_reg((A),(V),0)
|
|
|
|
// read or write the mcp4131 register
|
|
static uint16_t mcp4131_reg(uint8_t address, uint16_t value, uint8_t read_reg) {
|
|
int8_t i;
|
|
uint16_t r = address;
|
|
|
|
r <<= 12;
|
|
if (read_reg) {
|
|
r |= CMD_READ;
|
|
} else {
|
|
r |= value & 0x1FF; // clamp value to 9 bits
|
|
}
|
|
|
|
//setup Clock and and Data (SPI mode 0,0)
|
|
digitalWrite(POT_CLK, 0);
|
|
digitalWrite(POT_DAT, 0);
|
|
delayMicroseconds(50);
|
|
//activate IC
|
|
digitalWrite(POT_CS, 0);
|
|
|
|
i = 15;
|
|
while (i >= 0) {
|
|
//write address and command (bits 15 to 10)
|
|
if ((!read_reg) || i > 9) {
|
|
uint16_t mask = (1 << i);
|
|
digitalWrite(POT_DAT, (r & mask) ? 1 : 0);
|
|
}
|
|
digitalWrite(POT_CLK, 1); //rise the clock
|
|
//only when reading reg
|
|
if (read_reg) {
|
|
//switch the DAT pin to Input
|
|
if (i == 10) {
|
|
pinMode(POT_DAT, INPUT);
|
|
}
|
|
//read bits 9 to 0
|
|
if (i < 10) {
|
|
r |= (digitalRead(POT_DAT) << i); //read after rising edge
|
|
}
|
|
}
|
|
digitalWrite(POT_CLK, 0); //fall the clock
|
|
i--;
|
|
}
|
|
if (read_reg) {
|
|
pinMode(POT_DAT, OUTPUT);
|
|
}
|
|
|
|
//disable IC
|
|
digitalWrite(POT_CS, 1);
|
|
return r & 0x1FF; //clamp value to 9 bits
|
|
}
|
|
|
|
static void mcp4131_init(void) {
|
|
pinMode(POT_CS, OUTPUT);
|
|
pinMode(POT_CLK, OUTPUT);
|
|
pinMode(POT_DAT, OUTPUT);
|
|
|
|
digitalWrite(POT_CS, 1); //unselect the POT's SPI bus
|
|
}
|
|
|
|
// initialisation and detection
|
|
// returns 1 if POT is detected, 0 otherwise
|
|
static uint8_t mcp4131_detect(void) {
|
|
uint16_t r;
|
|
mcp4131_disableWiper();
|
|
|
|
//note checking is done while the wiper is disabled - no resistance is applied
|
|
mcp4131_write(ADDR_WIPER, 0b1010);
|
|
r = mcp4131_read(ADDR_WIPER);
|
|
if (r != 0b1010) {
|
|
return 0;
|
|
}
|
|
mcp4131_write(ADDR_WIPER, 0b101);
|
|
r = mcp4131_read(ADDR_WIPER);
|
|
if (r != 0b101) {
|
|
return 0;
|
|
}
|
|
mcp4131_write(ADDR_WIPER, POT_DEFAULT_VALUE);
|
|
#if POT_WIPER_ENABLED
|
|
mcp4131_enableWiper();
|
|
#endif
|
|
return 1;
|
|
}
|
|
|