mirror of
https://github.com/mudita/MuditaOS.git
synced 2026-06-27 17:57:05 -04:00
56 lines
1.1 KiB
C++
56 lines
1.1 KiB
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_PORTNEG.h"
|
|
|
|
/**
|
|
* TS0710_PORTNEG implementation
|
|
*/
|
|
|
|
/**
|
|
* @param DLC
|
|
* @param Port_parameters
|
|
*/
|
|
void TS0710_PORTNEG::request(DLCI_t DLC, PortParameters_t Port_parameters)
|
|
{}
|
|
|
|
/**
|
|
* @param DLC
|
|
* @param Port_parameters
|
|
*/
|
|
void TS0710_PORTNEG::indication(DLCI_t DLC, PortParameters_t Port_parameters)
|
|
{}
|
|
|
|
/**
|
|
* @param DLC
|
|
* @param Port_parameters
|
|
* @param accept
|
|
*/
|
|
void TS0710_PORTNEG::response(DLCI_t DLC, PortParameters_t Port_parameters, bool accept)
|
|
{}
|
|
|
|
/**
|
|
* @param DLC
|
|
* @param Port_parameters
|
|
* @param accept
|
|
*/
|
|
void TS0710_PORTNEG::confirm(DLCI_t DLC, PortParameters_t Port_parameters, bool accept)
|
|
{}
|
|
|
|
/**
|
|
* @param DLC
|
|
* @param LineStatusParameter
|
|
*/
|
|
void TS0710_PORTNEG::request(DLCI_t DLC, LineStatusParameter_e LineStatusParameter)
|
|
{}
|
|
|
|
/**
|
|
* @param DLC
|
|
* @param LineStatusParameter
|
|
*/
|
|
void TS0710_PORTNEG::indication(DLCI_t DLC, LineStatusParameter_e LineStatusParameter)
|
|
{} |