zephyr_tfm_psa_test.c 296 B

12345678910111213141516171819
  1. /*
  2. * Copyright (c) 2021 Nordic Semiconductor ASA
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. #include <zephyr.h>
  7. /**
  8. * \brief This symbol is the entry point provided by the PSA API compliance
  9. * test libraries
  10. */
  11. extern void val_entry(void);
  12. void psa_test(void)
  13. {
  14. val_entry();
  15. }