void getdata(uint8_t buf) {
// handle the incoming command and call the correct function
- if (rxcnt != 0 || (buf == 'A' || buf = 'S' || buf == 'W' || buf == 'R')) {
+ if (rxcnt != 0 || (buf == 'A' || buf == 'S' || buf == 'W' || buf == 'R')) {
rxbuf[rxcnt++] = buf;
}
if (buf == '\n' || buf == '\r') { // End of Command
if (hex_to_int(rxbuf[3]) == 0) {
V_out = (5 * adc[10]) / 2; // 2.5 (5/2) stepsize of adc
send_answer_hex(&rxbuf[0], V_out);
- }CSR1B |= (1 << UDRIE1); }
+ }
// DCDC 1
if (hex_to_int(rxbuf[3]) == 1) {
V_out = (5 * adc[7]) / 2;
send_answer_hex(&rxbuf[0], V_out);
}
// DCDC 3
- if (hex_to_int(rxbuf[3]) == 2) {
+ if (hex_to_int(rxbuf[3]) == 3) {
V_out = (5 * adc[4]) / 2;
send_answer_hex(&rxbuf[0], V_out);
}
// ADCSRA |= (1<<ADSC);
// eeprom
+ /*
+ shift_register = 0x00000000; //eeprom_reset
+
+ eeprom_update_byte((uint8_t *)0x21, shift_register);
+ eeprom_update_byte((uint8_t *)0x22, shift_register >> 8);
+ eeprom_update_byte((uint8_t *)0x23, shift_register >> 16);
+ eeprom_update_byte((uint8_t *)0x24, shift_register >> 24);
+ */
+
shift_register = eeprom_read_byte((uint8_t *)0x21) |
eeprom_read_byte((uint8_t *)0x22) << 8 |
(uint32_t)eeprom_read_byte((uint8_t *)0x23) << 16 |
(uint32_t)eeprom_read_byte((uint8_t *)0x24) << 24;
+
+ //shift_register = 0xffffffff; //default value
+
// to read dcdc switch to control the channel LEDs
if (shift_register & (uint32_t)1 << 4) {
LED_CH0_ON();
// curr_offset = eeprom_read_byte((uint8_t*)0x26);
-// shift_register = 0xffffffff; //default value
+
setVoltages();
LED1_ON(); // board status - ready to use