Edge AI Add-on API 2.2.0
Loading...
Searching...
No Matches

◆ nrf_axon_print_int64_vector()

void nrf_axon_print_int64_vector ( const char * name,
const int64_t * vector_ptr,
uint32_t count,
uint8_t stride )

group of functions for printing vectors of different formats out the console. The printed format is: <type of vector_ptr> <name>[<count>]=\r
{<vector_ptr[0]>,<vector_ptr[1]>, <...>,<vector_ptr[count-1]>}\r
For example int32_t my_int32_vector[10]= {1,-1,3,0,7,-1000,-10,8,9,10}

Parameters
[in]nameSymbol name of the vector.
[in]vector_ptrpointer to the vector to print.
[in]countNumber of elements in vector_ptr to print.
[in]strideNumber of elements to moveby after each print; ie, 1 means to print every element, 2 skips every other element.

prints an int64 vector in decimal.