2016-08-15 18:16:30 +08:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2016 Nordic Semiconductor ASA
|
|
|
|
* Copyright (c) 2016 Vinayak Kariappa Chettimada
|
|
|
|
*
|
2017-01-19 09:01:01 +08:00
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
2016-08-15 18:16:30 +08:00
|
|
|
*/
|
|
|
|
|
2016-12-21 13:21:13 +08:00
|
|
|
#ifndef MALIGN
|
|
|
|
#define MALIGN(x) __attribute__((aligned(x)))
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef MROUND
|
2017-04-21 01:00:29 +08:00
|
|
|
#define MROUND(x) (((u32_t)(x)+3) & (~((u32_t)3)))
|
2016-12-21 13:21:13 +08:00
|
|
|
#endif
|
|
|
|
|
2017-04-21 19:18:52 +08:00
|
|
|
void mem_init(void *mem_pool, u16_t mem_size, u16_t mem_count, void **mem_head);
|
2016-08-15 18:16:30 +08:00
|
|
|
void *mem_acquire(void **mem_head);
|
|
|
|
void mem_release(void *mem, void **mem_head);
|
|
|
|
|
2017-04-21 01:00:29 +08:00
|
|
|
u16_t mem_free_count_get(void *mem_head);
|
|
|
|
void *mem_get(void *mem_pool, u16_t mem_size, u16_t index);
|
|
|
|
u16_t mem_index_get(void *mem, void *mem_pool, u16_t mem_size);
|
2016-08-15 18:16:30 +08:00
|
|
|
|
2017-04-21 01:00:29 +08:00
|
|
|
void mem_rcopy(u8_t *dst, u8_t const *src, u16_t len);
|
2017-06-10 22:08:37 +08:00
|
|
|
u8_t mem_nz(u8_t *src, u16_t len);
|
2016-08-15 18:16:30 +08:00
|
|
|
|
2017-04-21 01:00:29 +08:00
|
|
|
u32_t mem_ut(void);
|