#include <stdio.h>
#include <stdint.h>
#include "nrf_assert.h"
#include "nrf_gzll.h"
#include "app_print.h"
#include "simple_uart.h"
#include "wireless_debug_config.h"
#include "nrf_gpio.h"
#include "boards.h"
Go to the source code of this file.
|
static void | uart_config (uint32_t baudrate, uint8_t rts_pin_number, uint8_t txd_pin_number, uint8_t cts_pin_number, uint8_t rxd_pin_number, bool hwfc) |
| Local version of uart configure that take baud rate.
|
|
static bool | m_uart_chars_available (void) |
| Checks if there are any characters available in the UART.
|
|
static void | line_print (void) |
| Print a dashed line to the UART.
|
|
static char * | state_string_get (uint8_t state) |
| Convert state to string.
|
|
static void | debug_output_print (uint8_t *debug_data) |
| Print debug output. More...
|
|
void | app_error_handler (uint32_t error_code, uint32_t line_num, const uint8_t *p_file_name) |
| Error handler function, which is called when an error has occurred.
|
|
void | assert_nrf_callback (uint16_t line_num, const uint8_t *p_file_name) |
| Assert macro callback function.
|
|
int | main () |
| Dongle application.
|
|
void | nrf_gzll_host_rx_data_ready (uint32_t pipe, nrf_gzll_host_rx_info_t rx_info) |
| GZLL data packet received callback.
|
|
void | nrf_gzll_device_tx_success (uint32_t pipe, nrf_gzll_device_tx_info_t tx_info) |
| GZLL ACK received callback.
|
|
void | nrf_gzll_device_tx_failed (uint32_t pipe, nrf_gzll_device_tx_info_t tx_info) |
| GZLL Transmission failed callback.
|
|
void | nrf_gzll_disabled () |
| GZLL Disabled callback.
|
|