Committer:
chris
Date:
Fri Oct 21 23:02:16 2011 +0000
Revision:
1:4d08e0ebf5dd
Parent:
0:e98d1c2b16c6

        

Who changed what in which revision?

UserRevisionLine numberNew contents of line
chris 0:e98d1c2b16c6 1 /* USBUtils.h */
chris 0:e98d1c2b16c6 2 /* USB Utility Functions and Macros */
chris 0:e98d1c2b16c6 3 /* Copyright (c) 2011 ARM Limited. All rights reserved. */
chris 0:e98d1c2b16c6 4
chris 0:e98d1c2b16c6 5 #define ROUND_UP_TO_MULTIPLE(x, m) ((((x)+((m)-1))/(m))*(m))
chris 0:e98d1c2b16c6 6
chris 0:e98d1c2b16c6 7 void USBMemCopy(uint8_t *dst, uint8_t *src, uint32_t size);
chris 0:e98d1c2b16c6 8