From 03d442a86124d759f294828b46ad134f3e2f18dc Mon Sep 17 00:00:00 2001 From: hathach Date: Mon, 14 May 2018 14:19:33 +0700 Subject: [PATCH] clean up --- tinyusb/portable/nordic/nrf5x/hal_nrf5x.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/tinyusb/portable/nordic/nrf5x/hal_nrf5x.c b/tinyusb/portable/nordic/nrf5x/hal_nrf5x.c index c46731622..fc4f55237 100644 --- a/tinyusb/portable/nordic/nrf5x/hal_nrf5x.c +++ b/tinyusb/portable/nordic/nrf5x/hal_nrf5x.c @@ -62,7 +62,7 @@ // TODO switch to use nrfx_power.h in sdk15 enum { - NRFX_POWER_USB_EVT_DETECTED, + NRFX_POWER_USB_EVT_DETECTED = 0, NRFX_POWER_USB_EVT_REMOVED, NRFX_POWER_USB_EVT_READY }; @@ -146,21 +146,21 @@ bool tusb_hal_init(void) sd_power_usbremoved_enable(true); // USB power may already be ready at this time -> no event generated - // We need to execute the hanlder based on the status + // We need to execute the handler based on the status uint32_t usb_reg; sd_power_usbregstatus_get(&usb_reg); if (usb_reg & POWER_USBREGSTATUS_VBUSDETECT_Msk ) { - tusb_hal_nrf_power_event(NRF_EVT_POWER_USB_DETECTED); + tusb_hal_nrf_power_event(NRFX_POWER_USB_EVT_DETECTED); } if (usb_reg & POWER_USBREGSTATUS_OUTPUTRDY_Msk ) { - tusb_hal_nrf_power_event(NRF_EVT_POWER_USB_POWER_READY); + tusb_hal_nrf_power_event(NRFX_POWER_USB_EVT_READY); } - // tusb_hal_nrf_power_event must be called by SOC event hanlder + // tusb_hal_nrf_power_event must be called by SOC event handler return true; }else #endif