1 /* 2 * Copyright (c) 2025 Nordic Semiconductor ASA 3 * 4 * SPDX-License-Identifier: Apache-2.0 5 */ 6 7 #include <zephyr/ztest.h> 8 9 #include "extflash.h" 10 11 const char extflash_string[] = EXPECTED_EXTFLASH_STRING; 12 extflash_function1(void)13void extflash_function1(void) 14 { 15 TC_PRINT("Executing %s at %p\n", __func__, &extflash_function1); 16 } 17 extflash_function2(void)18void extflash_function2(void) 19 { 20 TC_PRINT("Executing %s at %p\n", __func__, &extflash_function2); 21 } 22