1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-01-18 12:52:44 +01:00

Merge pull request #12549 from bergzand/pr/usb/codespell_fixes

usb/misc: Fix spelling mistakes pointed out by codespell
This commit is contained in:
Dylan Laduranty 2019-10-23 11:16:20 +02:00 committed by GitHub
commit 97258b9aeb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
8 changed files with 12 additions and 12 deletions

View File

@ -348,7 +348,7 @@ static void _usbdev_init(usbdev_t *dev)
usbdev->config->device->CTRLA.reg |= USB_CTRLA_ENABLE; usbdev->config->device->CTRLA.reg |= USB_CTRLA_ENABLE;
while (_syncbusy_enable(usbdev)) {} while (_syncbusy_enable(usbdev)) {}
/* Callibration values */ /* Calibration values */
usbdev->config->device->PADCAL.reg = usbdev->config->device->PADCAL.reg =
USB_PADCAL_TRANSP((*(uint32_t *)USB_FUSES_TRANSP_ADDR >> USB_PADCAL_TRANSP((*(uint32_t *)USB_FUSES_TRANSP_ADDR >>
USB_FUSES_TRANSP_Pos)) | USB_FUSES_TRANSP_Pos)) |

View File

@ -140,7 +140,7 @@ typedef enum {
USBDEV_EVENT_HOST_DISCONNECT, USBDEV_EVENT_HOST_DISCONNECT,
/** /**
* @brief Line reset occured * @brief Line reset occurred
* *
* A line reset is a host initiated USB reset to the peripheral * A line reset is a host initiated USB reset to the peripheral
* *
@ -172,7 +172,7 @@ typedef enum {
* @brief Transaction completed event. * @brief Transaction completed event.
* *
* An endpoint must emit this event after a transaction with the host * An endpoint must emit this event after a transaction with the host
* occured to indicate that the data in the buffer is used or new * occurred to indicate that the data in the buffer is used or new
* depending on the endpoint direction * depending on the endpoint direction
*/ */
USBDEV_EVENT_TR_COMPLETE, USBDEV_EVENT_TR_COMPLETE,

View File

@ -12,10 +12,10 @@
* @brief initializes USBUS, usb devices and handlers * @brief initializes USBUS, usb devices and handlers
* *
* This auto initialization for USBUS is designed to cover the common use case * This auto initialization for USBUS is designed to cover the common use case
* of a single usb peripheral. An USBUS instance is started with USB function * of a single USB peripheral. An USBUS instance is started with USB function
* handlers based on which module is compiled in. * handlers based on which module is compiled in.
* *
* If this doesn't suit your use case, a different intialization function can * If this doesn't suit your use case, a different initialization function can
* to be created based on this initialization sequence. * to be created based on this initialization sequence.
* *
* @author Koen Zandberg <koen@bergzand.net> * @author Koen Zandberg <koen@bergzand.net>

View File

@ -35,7 +35,7 @@ typedef struct {
size_t start; /**< Start offset of the current part */ size_t start; /**< Start offset of the current part */
size_t cur; /**< Current position in the message */ size_t cur; /**< Current position in the message */
size_t len; /**< Length of the full message */ size_t len; /**< Length of the full message */
size_t transfered; /**< Number of bytes transfered */ size_t transferred; /**< Number of bytes transferred */
size_t reqlen; /**< Maximum length of the request */ size_t reqlen; /**< Maximum length of the request */
} usbus_control_slicer_t; } usbus_control_slicer_t;
@ -124,7 +124,7 @@ void usbus_control_slicer_ready(usbus_t *usbus);
* @param[in] usbus USBUS context * @param[in] usbus USBUS context
* *
* @return 1 when there is a next slice * @return 1 when there is a next slice
* @return 0 when the data is fully transfered * @return 0 when the data is fully transferred
*/ */
int usbus_control_slicer_nextslice(usbus_t *usbus); int usbus_control_slicer_nextslice(usbus_t *usbus);

View File

@ -180,7 +180,7 @@ void usbus_cdc_acm_init(usbus_t *usbus, usbus_cdcacm_device_t *cdcacm,
static void _init(usbus_t *usbus, usbus_handler_t *handler) static void _init(usbus_t *usbus, usbus_handler_t *handler)
{ {
DEBUG("CDC_ACM: intialization\n"); DEBUG("CDC_ACM: initialization\n");
usbus_cdcacm_device_t *cdcacm = (usbus_cdcacm_device_t*)handler; usbus_cdcacm_device_t *cdcacm = (usbus_cdcacm_device_t*)handler;
cdcacm->flush.handler = _handle_flush; cdcacm->flush.handler = _handle_flush;

View File

@ -176,7 +176,7 @@ void usbus_cdcecm_init(usbus_t *usbus, usbus_cdcecm_device_t *handler)
static void _init(usbus_t *usbus, usbus_handler_t *handler) static void _init(usbus_t *usbus, usbus_handler_t *handler)
{ {
DEBUG("CDC ECM: intialization\n"); DEBUG("CDC ECM: initialization\n");
usbus_cdcecm_device_t *cdcecm = (usbus_cdcecm_device_t *)handler; usbus_cdcecm_device_t *cdcecm = (usbus_cdcecm_device_t *)handler;
/* Add event handlers */ /* Add event handlers */

View File

@ -31,7 +31,7 @@ int usbus_control_slicer_nextslice(usbus_t *usbus)
size_t end = bldr->start + ep0->in->len; size_t end = bldr->start + ep0->in->len;
if (bldr->cur > end && bldr->start < bldr->reqlen && if (bldr->cur > end && bldr->start < bldr->reqlen &&
bldr->transfered < bldr->reqlen) { bldr->transferred < bldr->reqlen) {
bldr->start += ep0->in->len; bldr->start += ep0->in->len;
bldr->cur = 0; bldr->cur = 0;
bldr->len = 0; bldr->len = 0;
@ -96,6 +96,6 @@ void usbus_control_slicer_ready(usbus_t *usbus)
size_t len = bldr->len; size_t len = bldr->len;
len = len < bldr->reqlen - bldr->start ? len : bldr->reqlen - bldr->start; len = len < bldr->reqlen - bldr->start ? len : bldr->reqlen - bldr->start;
bldr->transfered += len; bldr->transferred += len;
usbdev_ep_ready(ep0->in, len); usbdev_ep_ready(ep0->in, len);
} }

View File

@ -6,7 +6,7 @@ board under test and the host computer. Ping to the link local address from and
to the host computer must work. to the host computer must work.
On the host computer, using tools such as `ethtool` must show the USB CDC ECM On the host computer, using tools such as `ethtool` must show the USB CDC ECM
interface as link dectected: interface as link detected:
``` ```
# ethtool enp0s20u9u4 # ethtool enp0s20u9u4