We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The housekeeping_task_{kb,user}() function appears to be called twice in the main loop. Is this correct?
housekeeping_task_{kb,user}()
// tmk_core/protocol/lufa/lufa.c int main(void) { .... print("Keyboard start.\n"); while (1) { .... keyboard_task(); .... housekeeping_task_kb(); housekeeping_task_user(); } }
// tmk_core/common/keyboard.c void keyboard_task(void) { .... housekeeping_task_kb(); housekeeping_task_user(); uint8_t matrix_changed = matrix_scan(); if (matrix_changed) last_matrix_activity_trigger(); for (uint8_t r = 0; r < MATRIX_ROWS; r++) { .... } .... action_exec(TICK); .... }
The text was updated successfully, but these errors were encountered:
arm_atsam
Should be once per loop. If it's doing it more often, then yes, should be rectified.
Sorry, something went wrong.
No branches or pull requests
The
housekeeping_task_{kb,user}()
function appears to be called twice in the main loop. Is this correct?The text was updated successfully, but these errors were encountered: