 |
Edge AI Add-on API 2.2.0
|
Loading...
Searching...
No Matches
Go to the documentation of this file.
13#ifndef _NRF_EDGEAI_DEBUG_H_
14#define _NRF_EDGEAI_DEBUG_H_
22#ifndef NRF_EDGEAI_LOG_ENABLE
23#define NRF_EDGEAI_LOG_ENABLE 0
26#if NRF_EDGEAI_LOG_ENABLE == 1
28#define NRF_EDGEAI_LOG(...) printf(__VA_ARGS__)
30#define NRF_EDGEAI_LOG(...)
37#ifndef NRF_EDGEAI_ASSERT_ENABLE
38#define NRF_EDGEAI_ASSERT_ENABLE 0
41#if NRF_EDGEAI_ASSERT_ENABLE == 1
43#define nrf_edgeai_assert(x) assert(x)
45#define nrf_edgeai_assert(x) ((void)(x))