mirror of
https://github.com/osiweb/unified_retro_keyboard.git
synced 2024-11-25 09:31:11 +00:00
Merge branch 'master' of github.com:osiweb/unified_retro_keyboard
This commit is contained in:
commit
bd7fd85c7a
@ -23,7 +23,7 @@ elseif(ARCH MATCHES atmega2560)
|
|||||||
endif()
|
endif()
|
||||||
|
|
||||||
project("asdf"
|
project("asdf"
|
||||||
VERSION 1.5
|
VERSION 1.5.1
|
||||||
DESCRIPTION "A customizable keyboard matrix controller for retrocomputers"
|
DESCRIPTION "A customizable keyboard matrix controller for retrocomputers"
|
||||||
LANGUAGES C)
|
LANGUAGES C)
|
||||||
|
|
||||||
|
@ -393,10 +393,10 @@ void asdf_arch_out1_open_lo_set(uint8_t value)
|
|||||||
void asdf_arch_out2_set(uint8_t value)
|
void asdf_arch_out2_set(uint8_t value)
|
||||||
{
|
{
|
||||||
if (value) {
|
if (value) {
|
||||||
clear_bit(&ASDF_OUT2_PORT, ASDF_OUT1_BIT);
|
clear_bit(&ASDF_OUT2_PORT, ASDF_OUT2_BIT);
|
||||||
}
|
}
|
||||||
else {
|
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);
|
set_bit(&ASDF_OUT2_DDR, ASDF_OUT2_BIT);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user