Lines Matching refs:NRFX_ASSERT
107 NRFX_ASSERT(m_cb.state == NRFX_DRV_STATE_INITIALIZED); in nrfx_rramc_all_erase()
116 NRFX_ASSERT(m_cb.state == NRFX_DRV_STATE_INITIALIZED); in nrfx_rramc_byte_write()
117 NRFX_ASSERT(is_valid_address(address, true)); in nrfx_rramc_byte_write()
118 NRFX_ASSERT(fit_in_memory(address, true, 1)); in nrfx_rramc_byte_write()
125 NRFX_ASSERT(m_cb.state == NRFX_DRV_STATE_INITIALIZED); in nrfx_rramc_bytes_write()
126 NRFX_ASSERT(src); in nrfx_rramc_bytes_write()
127 NRFX_ASSERT(is_valid_address(address, true)); in nrfx_rramc_bytes_write()
128 NRFX_ASSERT(fit_in_memory(address, true, num_bytes)); in nrfx_rramc_bytes_write()
135 NRFX_ASSERT(m_cb.state == NRFX_DRV_STATE_INITIALIZED); in nrfx_rramc_word_write()
136 NRFX_ASSERT(is_valid_address(address, true)); in nrfx_rramc_word_write()
137 NRFX_ASSERT(fit_in_memory(address, true, NRFY_RRAMC_BYTES_IN_WORD)); in nrfx_rramc_word_write()
138 NRFX_ASSERT(nrfx_is_word_aligned((void const *)address)); in nrfx_rramc_word_write()
145 NRFX_ASSERT(m_cb.state == NRFX_DRV_STATE_INITIALIZED); in nrfx_rramc_words_write()
146 NRFX_ASSERT(src); in nrfx_rramc_words_write()
147 NRFX_ASSERT(is_valid_address(address, true)); in nrfx_rramc_words_write()
148 NRFX_ASSERT(fit_in_memory(address, true, (num_words * NRFY_RRAMC_BYTES_IN_WORD))); in nrfx_rramc_words_write()
149 NRFX_ASSERT(nrfx_is_word_aligned((void const *)address)); in nrfx_rramc_words_write()
150 NRFX_ASSERT(nrfx_is_word_aligned(src)); in nrfx_rramc_words_write()
201 NRFX_ASSERT(p_config); in nrfx_rramc_init()
230 NRFX_ASSERT(p_config); in nrfx_rramc_reconfigure()
247 NRFX_ASSERT(m_cb.state != NRFX_DRV_STATE_UNINITIALIZED); in nrfx_rramc_uninit()
266 NRFX_ASSERT(m_cb.handler); in nrfx_rramc_irq_handler()