Treat the LED driver as a peripheral with a driver

This commit is contained in:
Eric Tang
2017-07-12 20:03:50 -07:00
parent 3730733b73
commit 595ced9902
7 changed files with 9 additions and 9 deletions

View File

@@ -2,7 +2,7 @@
#include "init_clock.h"
#include "init_peripherals.h"
#include "usb_composite_device.h"
#include "led_driver.h"
#include "peripherals/led_driver.h"
#include "key_action.h"
#include "slave_scheduler.h"
#include "peripherals/test_led.h"
@@ -70,7 +70,6 @@ void main() {
init_hardware();
handleUsbBusPalCommand();
} else {
LedDriver_InitAllLeds(1);
InitSlaveScheduler();
KeyMatrix_Init(&KeyMatrix);
UpdateUsbReports();