I have compile issue with stm32cubemx.
Hello sir,
CPU : stm32f407VGT
I just set ETH and LWiP and generate file using stm32cubemx.
The file is generate succefully. But the file has error with IAR version7.
=========================================================
file name : mpu_armv7.h
__STATIC_INLINE void orderedCpy(volatile uint32_t* dst, const uint32_t* __RESTRICT src, uint32_t len)
{
uint32_t i;
for(i=0U;i<len;++i)
{
dst[i] = src[i];
}
}
error : expected a ")"
error : identifier "len" is undefined
error : identifier "src" is undefined
error : too many arguments in function call
error : too many arguments in functin call
Why is this error make and how to fix it?
