Skip to content

Commit

Permalink
fixup! fixup! fixup! fixup! fixup! nrf52: Add USB device peripheral d…
Browse files Browse the repository at this point in the history
…river
  • Loading branch information
bergzand committed Jun 10, 2019
1 parent d919366 commit 9a08a06
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 7 deletions.
10 changes: 5 additions & 5 deletions cpu/nrf52/include/nrfusb.h
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
*/

/**
* @defgroup drivers_nrf5x_nrfusb NRF usb peripheral implementation
* @ingroup drivers_usb
* @defgroup cpu_nrf52_nrfusb NRF usb peripheral implementation
* @ingroup cpu_nrf52
* @brief Minimal driver for the NRF52840 usb peripheral
*
* @{
Expand All @@ -19,8 +19,8 @@
* @author Koen Zandberg <koen@bergzand.net>
*/

#ifndef NRF_USB_H
#define NRF_USB_H
#ifndef NRFUSB_H
#define NRFUSB_H

#include <stdint.h>
#include <stddef.h>
Expand Down Expand Up @@ -74,5 +74,5 @@ typedef struct {
#ifdef __cplusplus
}
#endif
#endif /* NRF_USB_H */
#endif /* NRFUSB_H */
/** @} */
3 changes: 1 addition & 2 deletions cpu/nrf52/periph/usbdev.c
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
*/

/**
* @ingroup cpu_nrf52
* @ingroup cpu_nrf52_nrfusb
* @{
* @file
* @brief USB interface functions
Expand Down Expand Up @@ -655,4 +655,3 @@ void isr_usbd(void)
}
cortexm_isr_end();
}

0 comments on commit 9a08a06

Please sign in to comment.