mirror of
https://github.com/mudita/MuditaOS.git
synced 2026-07-04 13:17:08 -04:00
45 lines
716 B
C++
45 lines
716 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) {
|
|
|
|
} |