X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=keyboards%2Fwhitefox%2Fwhitefox.c;h=2555dc2025c57d5f67d234f67aa9634c49d5133b;hb=e717dcaa09143615ae0b46bf625621f67a7b55ce;hp=d35bf833889954a0905102c76ff070a4d1756880;hpb=11eb3d5491bc5d0d2e64d7b37282bc2304ea3247;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(); +}; +