mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
Merge pull request #3070 from authmillenon/ng_slip/fix/rename-params
ng_slip: rename xbee_params_t to ng_slip_params_t
This commit is contained in:
commit
1bd5a82678
@ -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,
|
||||
|
Loading…
Reference in New Issue
Block a user