#ifndef WOLFBOOT_SECURE_CALLS_INCLUDED #define WOLFBOOT_SECURE_CALLS_INCLUDED #include /* Data types shared between wolfBoot and the non-secure application */ #ifdef WOLFBOOT_SECURE_CALLS /* Secure calls prototypes for the non-secure world */ int __attribute__((cmse_nonsecure_entry)) nsc_test(void); int __attribute__((cmse_nonsecure_entry)) wcsm_ecc_keygen(uint32_t key_size, int ecc_curve); #endif #endif