mirror of
https://github.com/osiweb/unified_retro_keyboard.git
synced 2024-11-22 19:33:46 +00:00
Added dummy strobe-set functions to arch_test.c,h.
This commit is contained in:
parent
97890eaf63
commit
b3b2a93cdb
@ -565,6 +565,20 @@ void asdf_arch_pulse_delay_short(void)
|
|||||||
asdf_arch_pulse_delay();
|
asdf_arch_pulse_delay();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// PROCEDURE: asdf_arch_pos_strobe
|
||||||
|
// INPUTS: none
|
||||||
|
// OUTPUTS: none
|
||||||
|
// DESCRIPTION: Initialize strobe output to positive polarity. Initial state is
|
||||||
|
// LOW
|
||||||
|
void asdf_arch_set_pos_strobe(void) {}
|
||||||
|
|
||||||
|
// PROCEDURE: asdf_arch_neg_strobe
|
||||||
|
// INPUTS: none
|
||||||
|
// OUTPUTS: none
|
||||||
|
// DESCRIPTION: Initialize strobe output
|
||||||
|
void asdf_arch_set_neg_strobe(void) {}
|
||||||
|
|
||||||
|
|
||||||
// PROCEDURE: asdf_arch_init
|
// PROCEDURE: asdf_arch_init
|
||||||
// INPUTS: none
|
// INPUTS: none
|
||||||
// OUTPUTS: none
|
// OUTPUTS: none
|
||||||
|
@ -61,6 +61,19 @@ typedef enum {
|
|||||||
#define ASDF_ARCH_DEFAULT_SCANNER asdf_arch_read_row
|
#define ASDF_ARCH_DEFAULT_SCANNER asdf_arch_read_row
|
||||||
#define ASDF_ARCH_DEFAULT_OUTPUT asdf_arch_send_code
|
#define ASDF_ARCH_DEFAULT_OUTPUT asdf_arch_send_code
|
||||||
|
|
||||||
|
// PROCEDURE: asdf_arch_pos_strobe
|
||||||
|
// INPUTS: none
|
||||||
|
// OUTPUTS: none
|
||||||
|
// DESCRIPTION: Initialize strobe output to positive polarity. Initial state is
|
||||||
|
// LOW
|
||||||
|
void asdf_arch_set_pos_strobe(void);
|
||||||
|
|
||||||
|
// PROCEDURE: asdf_arch_neg_strobe
|
||||||
|
// INPUTS: none
|
||||||
|
// OUTPUTS: none
|
||||||
|
// DESCRIPTION: Initialize strobe output
|
||||||
|
void asdf_arch_set_neg_strobe(void);
|
||||||
|
|
||||||
// PROCEDURE: asdf_arch_null_output
|
// PROCEDURE: asdf_arch_null_output
|
||||||
// INPUTS: (uint8_t) value - ignored
|
// INPUTS: (uint8_t) value - ignored
|
||||||
// OUTPUTS: none
|
// OUTPUTS: none
|
||||||
|
Loading…
Reference in New Issue
Block a user