ESP-IDF
hal_memcpy
is only used within ESP-IDF.
Symbol previews are coming soon...
Symbols
loading (4/5)...
Files
loading (4/5)...
Summary
Syntax
Arguments
Examples
References
Call Tree
Data Use
Class Tree
Override Tree
Implementations
Instances
Lifecycle
SourceVu
ESP-IDF Framework and Examples
ESP-IDF
hal_memcpy
hal_memcpy macro
@endcond Copy data from memory array to another memory This helps bypass the -Warray-bounds, -Wstringop-overread and -Wstringop-overflow bugs.
Syntax
Show:
Summary
Declaration
from
misc.h:69
#define
hal_memcpy
(
dst_mem
,
src_mem
,
len
)
(
__extension__
(
{
memcpy
(
dst_mem
,
src_mem
,
len
)
;
}
)
)
Arguments
Argument
Description
dst_mem
Pointer to the destination of data
src_mem
Pointer to the source of data to be copied
len
The number of bytes to be copied
Return value
a pointer to destination
Examples
References
from
examples
Code
Location
#define
hal_memcpy
(
dst_mem
,
src_mem
,
len
)
(
__extension__
(
{
memcpy
(
dst_mem
,
src_mem
,
len
)
;
}
)
)
misc.h:69
hal_memcpy
(
&
fhdr
,
(
void
*
)
fhdr_src_addr
,
sizeof
(
fhdr
)
)
;
cpu_start.c:800
Call Tree
from
examples
All items filtered out
All items filtered out
Data Use
from
examples
All items filtered out
All items filtered out
Class Tree
from
examples
All items filtered out
All items filtered out
Override Tree
from
examples
All items filtered out
All items filtered out
Implementations
from
examples
All items filtered out
All items filtered out
Instances
from
examples
Lifecycle
from
examples
All items filtered out
All items filtered out