USB Mouse (relative) example for mbed NXP LPC11U24 beta

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers USBUtils.h Source File

USBUtils.h

00001 /* USBUtils.h */
00002 /* USB Utility Functions and Macros */
00003 /* Copyright (c) 2011 ARM Limited. All rights reserved. */
00004 
00005 #define ROUND_UP_TO_MULTIPLE(x, m) ((((x)+((m)-1))/(m))*(m))
00006 
00007 void USBMemCopy(uint8_t *dst, uint8_t *src, uint32_t size);
00008