1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

ng_slip: rename xbee_params_t to ng_slip_params_t

Fixed copy pasta
This commit is contained in:
Martine Lenders 2015-05-26 18:59:36 +02:00
parent 138ac603de
commit c29a4b474c
2 changed files with 4 additions and 2 deletions

View File

@ -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

View File

@ -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,