11 lines
290 B
C++
11 lines
290 B
C++
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
/*
|
|
* Copyright (C) 2022 Thomas Basler and others
|
|
*/
|
|
#include "ParaSetCommand.h"
|
|
|
|
ParaSetCommand::ParaSetCommand(uint64_t target_address, uint64_t router_address)
|
|
: CommandAbstract(target_address, router_address)
|
|
{
|
|
_payload[0] = 0x52;
|
|
} |