From 60f08d9e0dfd707c4ae670b58e506942ce9d6849 Mon Sep 17 00:00:00 2001 From: Jan Michel Date: Mon, 3 Aug 2015 21:30:55 +0200 Subject: [PATCH] moving power switch firmware to AVR --- Power/firmware/Makefile | 223 --------------------- Power/firmware/PowerSwitch.c | 370 ----------------------------------- 2 files changed, 593 deletions(-) delete mode 100644 Power/firmware/Makefile delete mode 100755 Power/firmware/PowerSwitch.c diff --git a/Power/firmware/Makefile b/Power/firmware/Makefile deleted file mode 100644 index 143fc01..0000000 --- a/Power/firmware/Makefile +++ /dev/null @@ -1,223 +0,0 @@ -# Hey Emacs, this is a -*- makefile -*- - -# AVR-GCC Makefile template, derived from the WinAVR template (which -# is public domain), believed to be neutral to any flavor of "make" -# (GNU make, BSD make, SysV make) - - -MCU = attiny441 -FORMAT = ihex -TARGET = PowerSwitch -SRC = $(TARGET).c -ASRC = -OPT = s - -# Name of this Makefile (used for "make depend"). -MAKEFILE = Makefile - -# Debugging format. -# Native formats for AVR-GCC's -g are stabs [default], or dwarf-2. -# AVR (extended) COFF requires stabs, plus an avr-objcopy run. -DEBUG = stabs - -# Compiler flag to set the C Standard level. -# c89 - "ANSI" C -# gnu89 - c89 plus GCC extensions -# c99 - ISO C99 standard (not yet fully implemented) -# gnu99 - c99 plus GCC extensions -CSTANDARD = -std=gnu99 - -# Place -D or -U options here -CDEFS = - -# Place -I options here -CINCS = - - -CDEBUG = -g$(DEBUG) -CWARN = -Wall -Wstrict-prototypes -CTUNING = -funsigned-char -funsigned-bitfields -fpack-struct -fshort-enums -#CEXTRA = -Wa,-adhlns=$(<:.c=.lst) -CFLAGS = $(CDEBUG) $(CDEFS) $(CINCS) -O$(OPT) $(CWARN) $(CSTANDARD) $(CEXTRA) - - -#ASFLAGS = -Wa,-adhlns=$(<:.S=.lst),-gstabs - - -#Additional libraries. - -# Minimalistic printf version -PRINTF_LIB_MIN = -Wl,-u,vfprintf -lprintf_min - -# Floating point printf version (requires MATH_LIB = -lm below) -PRINTF_LIB_FLOAT = -Wl,-u,vfprintf -lprintf_flt - -PRINTF_LIB = - -# Minimalistic scanf version -SCANF_LIB_MIN = -Wl,-u,vfscanf -lscanf_min - -# Floating point + %[ scanf version (requires MATH_LIB = -lm below) -SCANF_LIB_FLOAT = -Wl,-u,vfscanf -lscanf_flt - -SCANF_LIB = - -MATH_LIB = -lm - -# External memory options - -# 64 KB of external RAM, starting after internal RAM (ATmega128!), -# used for variables (.data/.bss) and heap (malloc()). -#EXTMEMOPTS = -Wl,--section-start,.data=0x801100,--defsym=__heap_end=0x80ffff - -# 64 KB of external RAM, starting after internal RAM (ATmega128!), -# only used for heap (malloc()). -#EXTMEMOPTS = -Wl,--defsym=__heap_start=0x801100,--defsym=__heap_end=0x80ffff - -EXTMEMOPTS = - -#LDMAP = $(LDFLAGS) -Wl,-Map=$(TARGET).map,--cref -LDFLAGS = $(EXTMEMOPTS) $(LDMAP) $(PRINTF_LIB) $(SCANF_LIB) $(MATH_LIB) - - -# Programming support using avrdude. Settings and variables. - -AVRDUDE_PROGRAMMER = usbtiny -AVRDUDE_PORT = usb - -AVRDUDE_WRITE_FLASH = -U flash:w:$(TARGET).hex -#AVRDUDE_WRITE_EEPROM = -U eeprom:w:$(TARGET).eep - - -# Uncomment the following if you want avrdude's erase cycle counter. -# Note that this counter needs to be initialized first using -Yn, -# see avrdude manual. -#AVRDUDE_ERASE_COUNTER = -y - -# Uncomment the following if you do /not/ wish a verification to be -# performed after programming the device. -#AVRDUDE_NO_VERIFY = -V - -# Increase verbosity level. Please use this when submitting bug -# reports about avrdude. See -# to submit bug reports. -#AVRDUDE_VERBOSE = -v -v - -AVRDUDE_BASIC = -p $(MCU) -P $(AVRDUDE_PORT) -c $(AVRDUDE_PROGRAMMER) -AVRDUDE_FLAGS = $(AVRDUDE_BASIC) $(AVRDUDE_NO_VERIFY) $(AVRDUDE_VERBOSE) $(AVRDUDE_ERASE_COUNTER) - - -CC = avr-gcc -OBJCOPY = avr-objcopy -OBJDUMP = avr-objdump -SIZE = avr-size -NM = avr-nm -AVRDUDE = avrdude -REMOVE = rm -f -MV = mv -f - -# Define all object files. -OBJ = $(SRC:.c=.o) $(ASRC:.S=.o) - -# Define all listing files. -LST = $(ASRC:.S=.lst) $(SRC:.c=.lst) - -# Combine all necessary flags and optional flags. -# Add target processor to flags. -ALL_CFLAGS = -mmcu=$(MCU) -I. $(CFLAGS) -ALL_ASFLAGS = -mmcu=$(MCU) -I. -x assembler-with-cpp $(ASFLAGS) - - -# Default target. -all: build - -build: elf hex eep - -elf: $(TARGET).elf -hex: $(TARGET).hex -eep: $(TARGET).eep -lss: $(TARGET).lss -sym: $(TARGET).sym - - -# Program the device. -program: $(TARGET).hex $(TARGET).eep - $(AVRDUDE) $(AVRDUDE_FLAGS) $(AVRDUDE_WRITE_FLASH) $(AVRDUDE_WRITE_EEPROM) - - - - -# Convert ELF to COFF for use in debugging / simulating in AVR Studio or VMLAB. -COFFCONVERT=$(OBJCOPY) --debugging \ ---change-section-address .data-0x800000 \ ---change-section-address .bss-0x800000 \ ---change-section-address .noinit-0x800000 \ ---change-section-address .eeprom-0x810000 - - -coff: $(TARGET).elf - $(COFFCONVERT) -O coff-avr $(TARGET).elf $(TARGET).cof - - -extcoff: $(TARGET).elf - $(COFFCONVERT) -O coff-ext-avr $(TARGET).elf $(TARGET).cof - - -.SUFFIXES: .elf .hex .eep .lss .sym - -.elf.hex: - $(OBJCOPY) -O $(FORMAT) -R .eeprom $< $@ - -.elf.eep: - -$(OBJCOPY) -j .eeprom --set-section-flags=.eeprom="alloc,load" \ - --change-section-lma .eeprom=0 -O $(FORMAT) $< $@ - -# Create extended listing file from ELF output file. -.elf.lss: - $(OBJDUMP) -h -S $< > $@ - -# Create a symbol table from ELF output file. -.elf.sym: - $(NM) -n $< > $@ - - - -# Link: create ELF output file from object files. -$(TARGET).elf: $(OBJ) - $(CC) $(ALL_CFLAGS) $(OBJ) --output $@ $(LDFLAGS) - - -# Compile: create object files from C source files. -.c.o: - $(CC) -c $(ALL_CFLAGS) $< -o $@ - - -# Compile: create assembler files from C source files. -.c.s: - $(CC) -S $(ALL_CFLAGS) $< -o $@ - - -# Assemble: create object files from assembler source files. -.S.o: - $(CC) -c $(ALL_ASFLAGS) $< -o $@ - - - -# Target: clean project. -clean: - $(REMOVE) $(TARGET).hex $(TARGET).eep $(TARGET).cof $(TARGET).elf \ - $(TARGET).map $(TARGET).sym $(TARGET).lss \ - $(OBJ) $(LST) $(SRC:.c=.s) $(SRC:.c=.d) - -depend: - if grep '^# DO NOT DELETE' $(MAKEFILE) >/dev/null; \ - then \ - sed -e '/^# DO NOT DELETE/,$$d' $(MAKEFILE) > \ - $(MAKEFILE).$$$$ && \ - $(MV) $(MAKEFILE).$$$$ $(MAKEFILE); \ - fi - echo '# DO NOT DELETE THIS LINE -- make depend depends on it.' \ - >> $(MAKEFILE); \ - $(CC) -M -mmcu=$(MCU) $(CDEFS) $(CINCS) $(SRC) $(ASRC) >> $(MAKEFILE) - -.PHONY: all build elf hex eep lss sym program coff extcoff clean depend diff --git a/Power/firmware/PowerSwitch.c b/Power/firmware/PowerSwitch.c deleted file mode 100755 index 1f414d9..0000000 --- a/Power/firmware/PowerSwitch.c +++ /dev/null @@ -1,370 +0,0 @@ -#define F_CPU 6000000UL - -#include -#include -#include -#include -#include - -#define FIRMWARE_VERSION 0x010 - -//A0 Aref In -//A1 Adc2 In (ADC1) -//A2 Relay2 Out -//A3 Relay1 Out -//A4 RX In -//A5 TX Out -//A6 Switch1 In -//A7 Adc1 In (ADC7) - -//B0 X -- -//B1 X -- -//B2 Switch2 In -//B3 Reset -- - -//all commands end in \n -// cc -- channel address in hex -//Scc(0|1|/) -- switch channel off/on/toggle -//Scc? -- read channel status - 2nd char: 'e' in case of overcurrent, 3rd char: enable 1/0 -//Ccc? -- read current -//Dcc? -- read averaged current -//Lccxxx -- set current limit (hex) -//Lcc? -- read current limit -//Axxx -- answer - three hex digits or chars -//Occ(0|1|2|3) -- switch ADC & set max scale: off|2.2Vref|4.1Vref|VCCref (one setting for both ports) -//Pcc(0|1) -- Do a automatic power cycle (2 seconds long) -//Rcc? -- read ADC measurement of internal 1.1V reference (one register) -//Icc? -- Firmware Info - -#define STARTTX(i) txcnt = (i);UCSR1B |= (1<< UDRIE1) -#define ISMYADDR() (rxbuf[1] == '0' && (rxbuf[2] == '0' || rxbuf[2] == '1') ) - -volatile uint8_t settings_changed = 0; -uint8_t output_enable = 0x3; -uint8_t output_error = 0; -uint8_t adc_enable = 1; -uint16_t adc[2]; -uint16_t avgadc[2] = {0,0}; -uint8_t countdown[2] = {0,0}; -uint16_t adc_reference = 0; - -uint8_t rxcnt = 0, txcnt = 0, txpoint = 0; -uint8_t rxbuf[7]; -uint8_t txbuf[7]; -uint16_t limit[2] = {0x0800,0x0800}; - - -uint8_t nib_to_hex(uint16_t in, uint8_t nib) { - uint8_t t = (in >> (nib*4)) & 0xF; - if (t <= 9) {return t + 0x30;} - return t - 10 + 0x61; - } - -uint8_t hex_to_int(uint8_t h) { //assumes valid number - if (h < 0x40) return h-0x30; - if (h < 0x50) return h-0x41+10; - return h-0x61+10; - } - -void sub2(uint8_t* c1, uint8_t* c2) { - uint8_t b = hex_to_int(*c1)*16 + hex_to_int(*c2); - b -= 2; - *c1 = nib_to_hex(b,1); - *c2 = nib_to_hex(b,0); - } - -void forward_msg(uint8_t i) { - sub2(&rxbuf[1],&rxbuf[2]); - memcpy ((uint8_t*)txbuf,(uint8_t*)rxbuf,i); - STARTTX(i); - } - -uint8_t is_my_address(uint8_t s) { - if (ISMYADDR()) { - rxbuf[2] -= '0'; - return 1; - } - else { - forward_msg(s); - return 0; - } - } - -void send_answer_hex(uint16_t v) { - txbuf[0]='A'; - txbuf[1]=nib_to_hex(v,2); - txbuf[2]=nib_to_hex(v,1); - txbuf[3]=nib_to_hex(v,0); - txbuf[4]='\n'; - STARTTX(5); - } - -void send_answer_chars(uint8_t a, uint8_t b, uint8_t c) { - txbuf[0]='A'; - txbuf[1]=a; - txbuf[2]=b; - txbuf[3]=c; - txbuf[4]='\n'; - STARTTX(5); - } - - -void switchoutput(uint8_t chan, int8_t to) { - if(to == -1) { - output_enable ^= (1<= -1) {settings_changed |= 4;} - - uint8_t en1 = ((output_enable & 1) && !(output_error & 1))?1:0; //switched for open drain version - uint8_t en2 = ((output_enable & 2) && !(output_error & 2))?1:0; - - PORTA &= ~((1<<2) | (1<<3)); - DDRA = (DDRA & ~(3<<2)) | ((en1&1)<<3) | ((en2&1)<<2); - //PORTA = (PORTA & ~(3<<2)) | ((en1&1)<<3) | ((en2&1)<<2); - - } - -void correct_adc(uint8_t channel) { - if(adc_enable == 1) return; - if(adc_enable == 2) { - adc[channel] = adc[channel]*2 - (adc[channel]>>3); - } - } - -ISR(TIMER0_OVF_vect) { - static uint8_t dwncnt[2] = {0,0}; - if(!(PINA & 0x40)) {dwncnt[0]++;} else {dwncnt[0] = 0;} - if(!(PINB & 0x04)) {dwncnt[1]++;} else {dwncnt[1] = 0;} - - - for(uint8_t i=0; i<=1;i++) { - if(dwncnt[i] == 50) {switchoutput(i,-1);} - if(countdown[i] != 0) { - if(countdown[i] == 1) { - switchoutput(i,-1); - } - countdown[i]--; - } - } - - if(adc_enable) {ADCSRA |= (1< 7) { - txpoint = 0; - txcnt = 0; - UCSR1B &= ~(1<< UDRIE1); - } - } - -ISR(USART1_RX_vect) { - uint8_t buf = UDR1; - if (rxcnt != 0 || (buf == 'S' || buf == 'A' || buf == 'L' || buf == 'C' || buf == 'I' - || buf == 'D' || buf == 'O' || buf == 'P' || buf == 'R')) { - rxbuf[rxcnt++] = buf; - } - if (buf == '\n' || buf == '\r') { - - - if(rxcnt == 5) { //4 letter commands -//Forward any incoming 4 letter answer - if (rxbuf[0] == 'A') { - memcpy ((uint8_t*)txbuf,(uint8_t*)rxbuf,5); - STARTTX(5); - } - -//Switch command - if (rxbuf[0] == 'S' && is_my_address(5)) { - if (rxbuf[3] != '?') { - switchoutput(rxbuf[2],rxbuf[3]-'0'); - } - send_answer_chars('0', (output_error & (1<= 7 || buf == '\n' || buf == '\r') { rxcnt = 0; } - -} - - - -__attribute__((naked)) int main(void) { - // Configure ports - - PORTA = 0b00001100; - PUEA = 0b01010000; - DDRA = 0b00101100; - - DDRB = 0b00000000; - PUEB = 0b00001100; - PORTB = 0b00000000; - - output_enable = eeprom_read_byte((uint8_t*)0x24); - switchoutput(0,-3); - limit[0] = eeprom_read_byte((uint8_t*)0x21)<<8; - limit[0] |= eeprom_read_byte((uint8_t*)0x20); - limit[1] = eeprom_read_byte((uint8_t*)0x23)<<8; - limit[1] |= eeprom_read_byte((uint8_t*)0x22); - adc_enable = eeprom_read_byte((uint8_t*)0x25); - - //CCP = 0xD8; //allow writing of CLKPR - CLKPR = (0 << CLKPS0); // no prescaler - PRR = (1 << PRTWI) | (0 << PRUSART1) | (1 << PRUSART0) | (1 << PRSPI) - |(1 << PRTIM2) | (1 << PRTIM1) | (0 << PRTIM0) | (0 << PRADC); - - TCCR0B = (4 << CS00); //prescaler 256 -> 6M/256*256 = 91.5 Hz - TIMSK0 = (1 << TOIE0); //Overflow interrupt` - - ADMUXA = 7; //(1 (Out2),7 (Out1)) - if (adc_enable == 1) ADMUXB = (6 << REFS0); //2.2V reference, with capacitor - if (adc_enable == 2) ADMUXB = (7 << REFS0); //4.096V reference - if (adc_enable == 3) ADMUXB = (0 << REFS0); //Vcc reference - ADCSRA = (1 << ADEN) | (1 << ADSC) | (1 << ADIE) | (6 << ADPS0); //enable, start, irq, /128 - ADCSRB = 0; - DIDR0 = (1<>8)&0xFF); - } - if (settings_changed & 2) { - settings_changed &= ~2; - eeprom_update_byte((uint8_t*)0x22,limit[1]&0xFF); - eeprom_update_byte((uint8_t*)0x23,(limit[1]>>8)&0xFF); - } - if (settings_changed & 4) { - settings_changed &= ~4; - eeprom_update_byte((uint8_t*)0x24,output_enable); - } - if (settings_changed & 8) { - settings_changed &= ~8; - eeprom_update_byte((uint8_t*)0x25,adc_enable); - } - } - } - } \ No newline at end of file -- 2.43.0