![]() |
Edge AI Add-on API 2.2.0
|
| 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}
| [in] | name | Symbol name of the vector. |
| [in] | vector_ptr | pointer to the vector to print. |
| [in] | count | Number of elements in vector_ptr to print. |
| [in] | stride | Number 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.