Select one of the symbols to view example projects that use it.
 
Outline
unity_utils_run_cache_disable_stub(void (*)(void *), void *);
Files
loading...
SourceVuESP-IDF Framework and ExamplesESP-IDFcomponents/unity/include/unity_test_utils_cache.h
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
/* * SPDX-FileCopyrightText: 2022 Espressif Systems (Shanghai) CO LTD * * SPDX-License-Identifier: Apache-2.0 *//* ... */ #pragma once #ifdef __cplusplus extern "C" { #endif /** * @brief Disable flash cache and run user stub function and then enable flash cache again * * @note You should make sure the passed-in function is in internal RAM. * * @param post_cache_disable User function to be invoked after cache is disabled. * @param user_ctx User context to be passed to user function. *//* ... */ void unity_utils_run_cache_disable_stub(void (*post_cache_disable)(void *), void *user_ctx); #ifdef __cplusplus }{...} #endif
Details
Show:
from
Types: Columns:
This file uses the notable symbols shown below. Click anywhere in the file to view more details.