hathach před 8 roky
rodič
revize
03d442a861
1 změnil soubory, kde provedl 5 přidání a 5 odebrání
  1. 5 5
      tinyusb/portable/nordic/nrf5x/hal_nrf5x.c

+ 5 - 5
tinyusb/portable/nordic/nrf5x/hal_nrf5x.c

@@ -62,7 +62,7 @@
 // TODO switch to use nrfx_power.h in sdk15
 // TODO switch to use nrfx_power.h in sdk15
 enum
 enum
 {
 {
-  NRFX_POWER_USB_EVT_DETECTED,
+  NRFX_POWER_USB_EVT_DETECTED = 0,
   NRFX_POWER_USB_EVT_REMOVED,
   NRFX_POWER_USB_EVT_REMOVED,
   NRFX_POWER_USB_EVT_READY
   NRFX_POWER_USB_EVT_READY
 };
 };
@@ -146,21 +146,21 @@ bool tusb_hal_init(void)
     sd_power_usbremoved_enable(true);
     sd_power_usbremoved_enable(true);
 
 
     // USB power may already be ready at this time -> no event generated
     // 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;
     uint32_t usb_reg;
     sd_power_usbregstatus_get(&usb_reg);
     sd_power_usbregstatus_get(&usb_reg);
 
 
     if (usb_reg & POWER_USBREGSTATUS_VBUSDETECT_Msk )
     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 )
     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;
     return true;
   }else
   }else
 #endif
 #endif