WS63 SDK 文档 7021f4f@fbb_ws63
ws63 和 ws63e 解决方案的 SDK 文档
载入中...
搜索中...
未找到
memmap_config.h
浏览该文件的文档.
1/* ----------------------------------------------------------------------------
2 * Copyright (c) Huawei Technologies Co., Ltd. 2021-2022. All rights reserved.
3 * Description: Memory Map Config HeadFile
4 * Author: Huawei LiteOS Team
5 * 2023-05-25, Create file. \n
6 */
7
8#ifndef _MEMMAP_CONFIG_H
9#define _MEMMAP_CONFIG_H
10
11#ifdef __cplusplus
12extern "C" {
13#endif /* __cplusplus */
14
15extern void *g_intheap_begin;
16extern void *g_intheap_size;
17
18#define OS_SYS_MEM_ADDR (&g_intheap_begin)
19#define OS_SYS_MEM_SIZE (unsigned int)(&g_intheap_size)
20
21
22#ifdef __cplusplus
23}
24#endif /* __cplusplus */
25
26#endif /* _MEMMAP_CONFIG_H */
void * g_intheap_begin
void * g_intheap_size