Clean up USB string descriptor related identifier names and the section titles of header files.

This commit is contained in:
László Monda
2016-02-25 16:19:56 +01:00
parent ce8deaac2c
commit 075338f398
8 changed files with 56 additions and 39 deletions
+2 -2
View File
@@ -3,7 +3,7 @@
// Macros:
#define GET_MSB_OF_WORD(word) ((uint8_t)(word >> 8))
#define GET_LSB_OF_WORD(word) ((uint8_t)(word & 0xff))
#define GET_MSB_OF_WORD(word) ((uint8_t)((word) >> 8))
#define GET_LSB_OF_WORD(word) ((uint8_t)((word) & 0xff))
#endif