You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Met same compiling issue, there is no change with latest ssdk 2024.12.0 for this part. Personally, I think the later IAR version should works as well. __VER__ == 9040001 is a bit of a limitation, would like an official optimization +1.
Or if this specific version must be needed, code comments would be even better, otherwise, people might modify the source code and take some unknown risk.
During compilation of
sl_memory_manager_retarget.c
the errorUnsupported IAR compiler version for standard C memory functions retarget
is emitted.Patching all occurrences of
(__VER__ == 9040001)
and replacing it with((__VER__ == 9040001) || (__VER__ == 9040002))
resolves the issueThe text was updated successfully, but these errors were encountered: