mirror of
https://github.com/qmk/qmk_firmware
synced 2024-11-17 17:35:30 +00:00
Fix unreferenced errors with mingw compiler and unit tests
This commit is contained in:
parent
5a25d50168
commit
78545b9509
5 changed files with 10 additions and 5 deletions
|
@ -169,7 +169,6 @@ void action_function(keyrecord_t *record, uint8_t id, uint8_t opt)
|
||||||
}
|
}
|
||||||
|
|
||||||
// translates key to keycode
|
// translates key to keycode
|
||||||
__attribute__ ((weak))
|
|
||||||
uint16_t keymap_key_to_keycode(uint8_t layer, keypos_t key)
|
uint16_t keymap_key_to_keycode(uint8_t layer, keypos_t key)
|
||||||
{
|
{
|
||||||
// Read entire word (16bits)
|
// Read entire word (16bits)
|
||||||
|
|
|
@ -41,3 +41,6 @@ const macro_t *action_get_macro(keyrecord_t *record, uint8_t id, uint8_t opt) {
|
||||||
}
|
}
|
||||||
return MACRO_NONE;
|
return MACRO_NONE;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
void action_function(keyrecord_t *record, uint8_t id, uint8_t opt) {
|
||||||
|
}
|
|
@ -58,3 +58,6 @@ void release_key(uint8_t col, uint8_t row) {
|
||||||
void clear_all_keys(void) {
|
void clear_all_keys(void) {
|
||||||
memset(matrix, 0, sizeof(matrix));
|
memset(matrix, 0, sizeof(matrix));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void led_set(uint8_t usb_led) {
|
||||||
|
}
|
||||||
|
|
|
@ -44,8 +44,8 @@ void TestFixture::run_one_scan_loop() {
|
||||||
advance_time(1);
|
advance_time(1);
|
||||||
}
|
}
|
||||||
|
|
||||||
void TestFixture::idle_for(uint time) {
|
void TestFixture::idle_for(unsigned time) {
|
||||||
for (uint i=0; i<time; i++) {
|
for (unsigned i=0; i<time; i++) {
|
||||||
run_one_scan_loop();
|
run_one_scan_loop();
|
||||||
}
|
}
|
||||||
}
|
}
|
|
@ -26,5 +26,5 @@ public:
|
||||||
static void TearDownTestCase();
|
static void TearDownTestCase();
|
||||||
|
|
||||||
void run_one_scan_loop();
|
void run_one_scan_loop();
|
||||||
void idle_for(uint ms);
|
void idle_for(unsigned ms);
|
||||||
};
|
};
|
Loading…
Reference in a new issue