Whitefox refactor (#10175)

This commit is contained in:
Ryan 2020-10-14 15:06:05 +11:00 committed by GitHub
commit 7437a38899
Failed to generate hash of commit
10 changed files with 876 additions and 478 deletions

View file

@ -14,21 +14,5 @@ GNU General Public License for more details.
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();
};