Nordic Semiconductor nRF5 AirFuel SDK
version 2.2.0
|
Functions | |
void | print_string (char *char_array) |
Decomposes char array and send chars through UART TX. More... | |
void | print_hex (uint32_t number, uint8_t byte_size) |
Converts hex number into char and send it through UART TX. More... | |
void | print_file_and_line (uint16_t line_num, const uint8_t *file_name) |
Function used to report event related to source code. More... | |
void print_string | ( | char * | char_array | ) |
Decomposes char array and send chars through UART TX.
[in] | char_array | Message to sent through UART. |
Definition at line 25 of file app_print.c.
void print_hex | ( | uint32_t | number, |
uint8_t | byte_size | ||
) |
Converts hex number into char and send it through UART TX.
[in] | number | Number to send. |
[in] | byte_size | Byte size of number to send. |
Definition at line 42 of file app_print.c.
void print_file_and_line | ( | uint16_t | line_num, |
const uint8_t * | file_name | ||
) |
Function used to report event related to source code.
Function used to provide more information of occurred errors. Might point on a line and a file when specific action occurred.
[in] | line_num | Number of line in a source file. |
[in] | file_name | Source file file-name. |
Definition at line 61 of file app_print.c.