X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=keyboards%2Fwhitefox%2Fwhitefox.c;h=2555dc2025c57d5f67d234f67aa9634c49d5133b;hb=2a231457bd494079c36cf3e07c9b887016adb491;hp=d35bf833889954a0905102c76ff070a4d1756880;hpb=6f448856151572f5bee329e68842cdda867fa66b;p=qmk_firmware.git diff --git a/keyboards/whitefox/whitefox.c b/keyboards/whitefox/whitefox.c index d35bf8338..2555dc202 100644 --- a/keyboards/whitefox/whitefox.c +++ b/keyboards/whitefox/whitefox.c @@ -15,3 +15,20 @@ You should have received a copy of the GNU General Public License along with this program. If not, see . */ #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(); +}; +