Home
last modified time | relevance | path

Searched refs:cache (Results 1 – 5 of 5) sorted by relevance

/hal_nordic-latest/nrfx/drivers/src/
Dnrfx_uarte.c163 nrfy_uarte_buffer_t cache; member
481 p_cb->tx.cache.p_buffer = p_config->tx_cache.p_buffer; in nrfx_uarte_init()
484 p_cb->tx.cache.length = 0; in nrfx_uarte_init()
488 p_cb->tx.cache.length = p_config->tx_cache.length - 1; in nrfx_uarte_init()
509 p_cb->rx.p_cache->cache[0].p_buffer = in nrfx_uarte_init()
511 p_cb->rx.p_cache->cache[1].p_buffer = in nrfx_uarte_init()
754 if (p_cb->tx.cache.p_buffer == NULL) in poll_out()
779 p_cb->tx.cache.p_buffer[p_cb->tx.cache.length] = *p_byte; in poll_out()
780 p_buf = &p_cb->tx.cache.p_buffer[p_cb->tx.cache.length]; in poll_out()
820 uint32_t chunk_len = NRFX_MIN(p_cb->tx.cache.length, p_cb->tx.curr.length - p_cb->tx.off); in tx_prepare_start()
[all …]
/hal_nordic-latest/nrfx/drivers/include/
Dnrfx_uarte.h206 nrfy_uarte_buffer_t cache[2]; ///< Cache buffers. member
/hal_nordic-latest/nrfx/samples/doc/
Dnrfx_examples.doxyfile461 # The size of the symbol lookup cache can be set using LOOKUP_CACHE_SIZE. This
462 # cache is used to resolve symbols given their name and scope. Since this can be
464 # code, doxygen keeps a cache of pre-resolved symbols. If the cache is too small
465 # doxygen will become slower. If the cache is too large, memory is wasted. The
466 # cache size is given by this formula: 2^(16+LOOKUP_CACHE_SIZE). The valid range
467 # is 0..9, the default is 0, corresponding to a cache size of 2^16=65536
468 # symbols. At the end of a run doxygen will report the cache usage and suggest
469 # the optimal cache size from a speed point of view.
/hal_nordic-latest/nrfx/doc/
Dnrfx.doxyfile463 # The size of the symbol lookup cache can be set using LOOKUP_CACHE_SIZE. This
464 # cache is used to resolve symbols given their name and scope. Since this can be
466 # code, doxygen keeps a cache of pre-resolved symbols. If the cache is too small
467 # doxygen will become slower. If the cache is too large, memory is wasted. The
468 # cache size is given by this formula: 2^(16+LOOKUP_CACHE_SIZE). The valid range
469 # is 0..9, the default is 0, corresponding to a cache size of 2^16=65536
470 # symbols. At the end of a run doxygen will report the cache usage and suggest
471 # the optimal cache size from a speed point of view.
/hal_nordic-latest/nrfx/
DCHANGELOG.md86 - Fixed potential data corruption when cache bounce buffer and RX FIFO buffer were shared in the UA…