]> git.donarmstrong.com Git - qmk_firmware.git/blobdiff - keyboards/whitefox/whitefox.c
Add user-overridable callback for cancelling UCIS input (#5564)
[qmk_firmware.git] / keyboards / whitefox / whitefox.c
index d35bf833889954a0905102c76ff070a4d1756880..2555dc2025c57d5f67d234f67aa9634c49d5133b 100644 (file)
@@ -15,3 +15,20 @@ You should have received a copy of the GNU General Public License
 along with this program.  If not, see <http://www.gnu.org/licenses/>.
 */
 #include "whitefox.h"
+
+__attribute__ ((weak))
+void matrix_init_user(void) {
+}
+
+__attribute__ ((weak))
+void matrix_scan_user(void) {
+}
+
+void matrix_init_kb(void) {
+  matrix_init_user();
+};
+
+void matrix_scan_kb(void) {
+  matrix_scan_user();
+};
+