We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d46bf04 commit defacf2Copy full SHA for defacf2
include/rtdef.h
@@ -261,7 +261,7 @@ typedef int (*init_fn_t)(void);
261
* @def RT_ALIGN_DOWN(size, align)
262
* Return the down number of aligned at specified width. RT_ALIGN_DOWN(13, 4)
263
* would return 12.
264
- * @note align Must be an integer power of 2 or the result will be incorrect
+ * @note align Must be an integer power of 2 or the result will be incorrect
265
*/
266
#define RT_ALIGN_DOWN(size, align) ((size) & ~((align) - 1))
267
rt-thread
@@ -0,0 +1 @@
1
+Subproject commit d46bf042c434ef05d96ec6d06b71ab26c5d4f9ae
0 commit comments