Rtos API example

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers test_cs_nvm.h Source File

test_cs_nvm.h

00001 /*
00002  * Copyright (c) 2016 ARM Limited. All rights reserved.
00003  */
00004 #ifndef TEST_NS_NVM_HELPER_H
00005 #define TEST_NS_NVM_HELPER_H
00006 
00007 #ifdef __cplusplus
00008 extern "C" {
00009 #endif
00010 
00011 #include <stdbool.h>
00012 
00013 bool test_cs_nvm_init_finalize();
00014 bool test_cs_nvm_key_create();
00015 bool test_cs_nvm_key_delete();
00016 bool test_cs_nvm_key_delete_failure_in_close();
00017 bool test_cs_nvm_read();
00018 bool test_cs_nvm_read_failure();
00019 bool test_cs_nvm_read_failure_in_close();
00020 bool test_cs_nvm_write();
00021 bool test_cs_nvm_write_failure();
00022 bool test_cs_nvm_write_failure_in_close();
00023 bool test_cs_nvm_flush();
00024 bool test_cs_nvm_operation_in_progress();
00025 
00026 #ifdef __cplusplus
00027 }
00028 #endif
00029 
00030 #endif // TEST_NS_NVM_HELPER_H
00031