Skip to content
Snippets Groups Projects
Commit 1bd5a826 authored by Oleg Hahm's avatar Oleg Hahm
Browse files

Merge pull request #3070 from authmillenon/ng_slip/fix/rename-params

ng_slip: rename xbee_params_t to ng_slip_params_t
parents cfd9a590 c29a4b47
No related branches found
No related tags found
No related merge requests found
......@@ -65,7 +65,7 @@ typedef struct {
typedef struct xbee_params {
uart_t uart; /**< UART interfaced the device is connected to */
uint32_t baudrate; /**< baudrate to use */
} xbee_params_t;
} ng_slip_params_t;
/**
* @brief Initializes a new @ref net_ng_slip control thread for UART device
......
......@@ -19,11 +19,13 @@
#ifndef SLIP_PARAMS_H
#define SLIP_PARAMS_H
#include "net/ng_slip.h"
#ifdef __cplusplus
extern "C" {
#endif
static xbee_params_t xbee_params[] = {
static ng_slip_params_t xbee_params[] = {
{
.uart = SLIP_UART,
.baudrate = SLIP_BAUDRATE,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment