mirror of
https://github.com/mudita/MuditaOS.git
synced 2026-07-04 05:06:58 -04:00
39 lines
706 B
C++
39 lines
706 B
C++
/**
|
|
* Project Untitled
|
|
*/
|
|
|
|
#include "TS0710_SERVNEG.h"
|
|
|
|
/**
|
|
* TS0710_SERVNEG implementation
|
|
*/
|
|
|
|
/**
|
|
* @param DLC
|
|
* @param Service_parameters
|
|
*/
|
|
void TS0710_SERVNEG::request(DLCI_t DLC, ServiceParameters_t Service_parameters)
|
|
{}
|
|
|
|
/**
|
|
* @param DLC
|
|
* @param Service_parameters
|
|
*/
|
|
void TS0710_SERVNEG::indication(DLCI_t DLC, ServiceParameters_t Service_parameters)
|
|
{}
|
|
|
|
/**
|
|
* @param DLC
|
|
* @param Service_parameters
|
|
* @param accept
|
|
*/
|
|
void TS0710_SERVNEG::response(DLCI_t DLC, ServiceParameters_t Service_parameters, bool accept)
|
|
{}
|
|
|
|
/**
|
|
* @param DLC
|
|
* @param Service_parameters
|
|
* @param accept
|
|
*/
|
|
void TS0710_SERVNEG::confirm(DLCI_t DLC, ServiceParameters_t Service_parameters, bool accept)
|
|
{} |