This post is older than 2 years and might not be relevant anymore
More Info: Consider searching for newer posts

issues in nrf_crypto module in SDK14

Hello there,

I was wondering if there's a known issues page fro SDK 14.0.0 (not alpha).

Issue #1: crypto compile error: I ran into an issue compiling nrf_crypto.c I think the new type nrf_value_length_t should be used in nrf_crypto.c rather than the old type def of nrf_crypto_key_t . Also all de-referencing of the members of this struct should change to p_value and length as defined in nrf_crypto_types.h:

typedef struct
{
    uint8_t * p_value;
    uint32_t  length;

} nrf_value_length_t;

Issue #2: Can't compile nrf_crypto_svc.c as macro SVC_REGISTER_FUNCTION doesn't seem to be defined anywhere.

Thanks, Farhang

Parents
  • Under external\nrf_cc310\lib there's a compiled library (libcc310_gcc_0.9.0.a) file, I suspect including that will resolve your link issue. You simply have to add that file to your project in IAR. (Including the path will not help as this is not a header file, but a precompiled library, so you need to Add-> Add File under any arbitrary "Group" in the project.

Reply
  • Under external\nrf_cc310\lib there's a compiled library (libcc310_gcc_0.9.0.a) file, I suspect including that will resolve your link issue. You simply have to add that file to your project in IAR. (Including the path will not help as this is not a header file, but a precompiled library, so you need to Add-> Add File under any arbitrary "Group" in the project.

Children
No Data
Related