Просмотр исходного кода

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

QMK Bot 3 лет назад
Родитель
Сommit
2db4cc0f4a
2 измененных файлов с 5 добавлено и 2 удалено
  1. 3 1
      quantum/wpm.c
  2. 2 1
      quantum/wpm.h

+ 3 - 1
quantum/wpm.c

@@ -16,7 +16,9 @@
  */
  */
 
 
 #include "wpm.h"
 #include "wpm.h"
-
+#include "timer.h"
+#include "keycode.h"
+#include "quantum_keycodes.h"
 #include <math.h>
 #include <math.h>
 
 
 // WPM Stuff
 // WPM Stuff

+ 2 - 1
quantum/wpm.h

@@ -17,7 +17,8 @@
 
 
 #pragma once
 #pragma once
 
 
-#include "quantum.h"
+#include <stdbool.h>
+#include <stdint.h>
 
 
 #ifndef WPM_ESTIMATED_WORD_SIZE
 #ifndef WPM_ESTIMATED_WORD_SIZE
 #    define WPM_ESTIMATED_WORD_SIZE 5
 #    define WPM_ESTIMATED_WORD_SIZE 5