Merge branch 'master' of github.com:osiweb/unified_retro_keyboard

This commit is contained in:
Dave 2021-11-14 18:47:31 -06:00
commit bd7fd85c7a
2 changed files with 3 additions and 3 deletions

View File

@ -23,7 +23,7 @@ elseif(ARCH MATCHES atmega2560)
endif()
project("asdf"
VERSION 1.5
VERSION 1.5.1
DESCRIPTION "A customizable keyboard matrix controller for retrocomputers"
LANGUAGES C)

View File

@ -393,10 +393,10 @@ void asdf_arch_out1_open_lo_set(uint8_t value)
void asdf_arch_out2_set(uint8_t value)
{
if (value) {
clear_bit(&ASDF_OUT2_PORT, ASDF_OUT1_BIT);
clear_bit(&ASDF_OUT2_PORT, ASDF_OUT2_BIT);
}
else {
set_bit(&ASDF_OUT2_PORT, ASDF_OUT1_BIT);
set_bit(&ASDF_OUT2_PORT, ASDF_OUT2_BIT);
}
set_bit(&ASDF_OUT2_DDR, ASDF_OUT2_BIT);
}