mirror of
https://github.com/mudita/MuditaOS.git
synced 2026-01-28 07:52:42 -05:00
40 lines
782 B
C++
40 lines
782 B
C++
// Copyright (c) 2017-2020, Mudita Sp. z.o.o. All rights reserved.
|
|
// For licensing, see https://github.com/mudita/MuditaOS/LICENSE.md
|
|
|
|
/**
|
|
* Project Untitled
|
|
*/
|
|
|
|
#include "TS0710_CONTROL.h"
|
|
|
|
/**
|
|
* TS0710_CONTROL implementation
|
|
*/
|
|
|
|
/**
|
|
* @param DLC
|
|
* @param Control_parameters
|
|
*/
|
|
void TS0710_CONTROL::request(DLCI_t DLC, ControlParameters_t Control_parameters)
|
|
{}
|
|
|
|
/**
|
|
* @param DLC
|
|
* @param Control_parameters
|
|
*/
|
|
void TS0710_CONTROL::indication(DLCI_t DLC, ControlParameters_t Control_parameters)
|
|
{}
|
|
|
|
/**
|
|
* @param DLC
|
|
* @param Control_parameters
|
|
*/
|
|
void TS0710_CONTROL::response(DLCI_t DLC, ControlParameters_t Control_parameters)
|
|
{}
|
|
|
|
/**
|
|
* @param DLC
|
|
* @param Control_parameters
|
|
*/
|
|
void TS0710_CONTROL::confirm(DLCI_t DLC, ControlParameters_t Control_parameters)
|
|
{} |