Browse Source

Merge remote-tracking branch 'origin/develop' into xap

QMK Bot 1 month ago
parent
commit
5ea9d04dd3
2 changed files with 5 additions and 0 deletions
  1. 3 0
      quantum/keyboard.c
  2. 2 0
      quantum/process_keycode/process_sequencer.c

+ 3 - 0
quantum/keyboard.c

@@ -150,6 +150,9 @@ along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #ifdef CONNECTION_ENABLE
 #    include "connection.h"
 #endif
+#ifdef SEQUENCER_ENABLE
+#    include "sequencer.h"
+#endif
 
 static uint32_t last_input_modification_time = 0;
 uint32_t        last_input_activity_time(void) {

+ 2 - 0
quantum/process_keycode/process_sequencer.c

@@ -15,6 +15,8 @@
  */
 
 #include "process_sequencer.h"
+#include "quantum_keycodes.h"
+#include "sequencer.h"
 
 bool process_sequencer(uint16_t keycode, keyrecord_t *record) {
     if (record->event.pressed) {