git-svn-id: svn://svn.code.sf.net/p/chibios/svn/branches/stable_2.4.x@4078 35acf78f-673a-0410-8e92-d51de3d6d3f4

This commit is contained in:
gdisirio 2012-04-07 10:14:50 +00:00
parent 3f5cf067d3
commit 23e8d33a4b
1 changed files with 4 additions and 4 deletions

View File

@ -376,7 +376,7 @@ typedef const USBDescriptor * (*usbgetdescriptor_t)(USBDriver *usbp,
/** /**
* @brief Reads from a dedicated packet buffer. * @brief Reads from a dedicated packet buffer.
* @pre In order to use this function he endpoint must have been * @pre In order to use this function the endpoint must have been
* initialized in packet mode. * initialized in packet mode.
* @note This function can be invoked both in thread and IRQ context. * @note This function can be invoked both in thread and IRQ context.
* *
@ -396,7 +396,7 @@ typedef const USBDescriptor * (*usbgetdescriptor_t)(USBDriver *usbp,
/** /**
* @brief Writes to a dedicated packet buffer. * @brief Writes to a dedicated packet buffer.
* @pre In order to use this function he endpoint must have been * @pre In order to use this function the endpoint must have been
* initialized in packet mode. * initialized in packet mode.
* @note This function can be invoked both in thread and IRQ context. * @note This function can be invoked both in thread and IRQ context.
* *
@ -413,7 +413,7 @@ typedef const USBDescriptor * (*usbgetdescriptor_t)(USBDriver *usbp,
/** /**
* @brief Prepares for a receive transaction on an OUT endpoint. * @brief Prepares for a receive transaction on an OUT endpoint.
* @pre In order to use this function he endpoint must have been * @pre In order to use this function the endpoint must have been
* initialized in transaction mode. * initialized in transaction mode.
* @post The endpoint is ready for @p usbStartReceiveI(). * @post The endpoint is ready for @p usbStartReceiveI().
* *
@ -429,7 +429,7 @@ typedef const USBDescriptor * (*usbgetdescriptor_t)(USBDriver *usbp,
/** /**
* @brief Prepares for a transmit transaction on an IN endpoint. * @brief Prepares for a transmit transaction on an IN endpoint.
* @pre In order to use this function he endpoint must have been * @pre In order to use this function the endpoint must have been
* initialized in transaction mode. * initialized in transaction mode.
* @post The endpoint is ready for @p usbStartTransmitI(). * @post The endpoint is ready for @p usbStartTransmitI().
* *