Skip to content
Snippets Groups Projects
Commit 50b0cddf authored by Michael DM Dryden's avatar Michael DM Dryden
Browse files

Prevent shorting CE/RE after experiment/during init.
parent 08536618
Branches
1 merge request!5Resolve "CE/RE briefly shorted between potentiometry experiments"
Pipeline #137 passed with stage
in 39 seconds
...@@ -346,7 +346,7 @@ void pot_init(void){ ...@@ -346,7 +346,7 @@ void pot_init(void){
#if BOARD_VER_MAJOR == 1 && BOARD_VER_MINOR == 2 #if BOARD_VER_MAJOR == 1 && BOARD_VER_MINOR == 2
ioport_set_port_dir(IOPORT_PORTB, PIN2_bm|PIN3_bm|PIN4_bm|PIN5_bm|PIN6_bm|PIN7_bm, IOPORT_DIR_OUTPUT); ioport_set_port_dir(IOPORT_PORTB, PIN2_bm|PIN3_bm|PIN4_bm|PIN5_bm|PIN6_bm|PIN7_bm, IOPORT_DIR_OUTPUT);
ioport_set_port_dir(IOPORT_PORTD, PIN4_bm, IOPORT_DIR_OUTPUT); ioport_set_port_dir(IOPORT_PORTD, PIN4_bm, IOPORT_DIR_OUTPUT);
ioport_set_port_level(IOPORT_PORTB, PIN2_bm|PIN3_bm|PIN4_bm|PIN5_bm|PIN6_bm|PIN7_bm, PIN3_bm|PIN6_bm|PIN7_bm); ioport_set_port_level(IOPORT_PORTB, PIN2_bm|PIN3_bm|PIN4_bm|PIN5_bm|PIN6_bm|PIN7_bm, PIN6_bm|PIN7_bm);
ioport_set_port_level(IOPORT_PORTD, PIN4_bm, PIN4_bm); ioport_set_port_level(IOPORT_PORTD, PIN4_bm, PIN4_bm);
#endif #endif
} }
...@@ -501,8 +501,6 @@ void volt_exp_stop(void){ ...@@ -501,8 +501,6 @@ void volt_exp_stop(void){
delay_ms(100); // Make sure WE is last to disconnect delay_ms(100); // Make sure WE is last to disconnect
ioport_set_pin_level(PIN_POT_WE, 0); ioport_set_pin_level(PIN_POT_WE, 0);
ioport_set_pin_level(PIN_POT_2ELECTRODE, 1);
} }
#if BOARD_VER_MAJOR == 1 && BOARD_VER_MINOR >= 2 #if BOARD_VER_MAJOR == 1 && BOARD_VER_MINOR >= 2
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment