]> git.donarmstrong.com Git - qmk_firmware.git/blobdiff - keyboards/ps2avrGB/matrix.c
Extended the hint of the programmer to link to the relevant README part instead of...
[qmk_firmware.git] / keyboards / ps2avrGB / matrix.c
index e487ca18231ad53cf69a718a257221433f712d9c..57aa36b5ff749f8dae2b293a95edcf2ef8fec177 100644 (file)
@@ -21,7 +21,7 @@ along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #include "matrix.h"
 
 #ifndef DEBOUNCE
-#   define DEBOUNCE    5
+#define DEBOUNCE       5
 #endif
 
 static uint8_t debouncing = DEBOUNCE;
@@ -93,6 +93,8 @@ uint8_t matrix_scan(void) {
         }
     }
 
+    matrix_scan_user();
+
     return 1;
 }
 
@@ -100,6 +102,5 @@ inline matrix_row_t matrix_get_row(uint8_t row) {
     return matrix[row];
 }
 
-void matrix_print(void)
-{
+void matrix_print(void) {
 }