usb_cdcacm: minor, update doc

This commit is contained in:
King Kévin 2019-12-06 17:40:34 +01:00
parent b0700538e3
commit b899b4b26e
2 changed files with 5 additions and 5 deletions

View File

@ -13,9 +13,9 @@
* *
*/ */
/** library for USB CDC ACM communication (code) /** library for USB CDC ACM communication (code)
* @file usb_cdcacm.c * @file
* @author King Kévin <kingkevin@cuvoodoo.info> * @author King Kévin <kingkevin@cuvoodoo.info>
* @date 2016-2018 * @date 2016-2019
*/ */
/* standard libraries */ /* standard libraries */
@ -234,7 +234,7 @@ static const struct usb_config_descriptor usb_cdcacm_configuration_descriptor =
.interface = usb_cdcacm_interfaces, /**< pointer to an array of interfaces */ .interface = usb_cdcacm_interfaces, /**< pointer to an array of interfaces */
}; };
/**< device ID used as serial number */ /** device ID used as serial number */
static char usb_serial[] = "00112233445566778899aabb"; static char usb_serial[] = "00112233445566778899aabb";
/** USB string table /** USB string table

View File

@ -13,9 +13,9 @@
* *
*/ */
/** library for USB CDC ACM communication (API) /** library for USB CDC ACM communication (API)
* @file usb_cdcacm.h * @file
* @author King Kévin <kingkevin@cuvoodoo.info> * @author King Kévin <kingkevin@cuvoodoo.info>
* @date 2016 * @date 2016-2019
*/ */
#pragma once #pragma once