diff options
Diffstat (limited to 'os')
-rw-r--r-- | os/common/oslib/include/chheap.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/os/common/oslib/include/chheap.h b/os/common/oslib/include/chheap.h index cd677177a..9a90d0488 100644 --- a/os/common/oslib/include/chheap.h +++ b/os/common/oslib/include/chheap.h @@ -102,6 +102,13 @@ struct memory_heap { /* Module macros. */
/*===========================================================================*/
+/**
+ * @brief Allocation of an aligned static heap buffer.
+ */
+#define CH_HEAP_AREA(name, size) \
+ ALIGNED_VAR(CH_HEAP_ALIGNMENT) \
+ uint8_t name[MEM_ALIGN_NEXT((size), CH_HEAP_ALIGNMENT)]
+
/*===========================================================================*/
/* External declarations. */
/*===========================================================================*/
|