1
0
Fork 0

Add build option BOOTMAGIC_ENABLE

This commit is contained in:
tmk 2013-03-11 15:28:14 +09:00
parent d055e0633e
commit ef8439bddb
5 changed files with 19 additions and 12 deletions

View file

@ -29,10 +29,8 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
#include "util.h"
#include "sendchar.h"
#include "bootmagic.h"
#ifdef MOUSEKEY_ENABLE
#include "mousekey.h"
#endif
#include "eeconfig.h"
#include "mousekey.h"
#ifdef MATRIX_HAS_GHOST
@ -64,6 +62,7 @@ void keyboard_init(void)
ps2_mouse_init();
#endif
#ifdef BOOTMAGIC_ENABLE
bootmagic();
if (eeconfig_is_enabled()) {
@ -77,6 +76,7 @@ void keyboard_init(void)
} else {
eeconfig_init();
}
#endif
}
/*