mirror of
https://github.com/OpenIntelWireless/itlwm.git
synced 2025-06-18 20:47:57 +00:00
40 lines
1.0 KiB
C++
40 lines
1.0 KiB
C++
/*
|
|
* Copyright (C) 2020 钟先耀
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*/
|
|
|
|
#ifndef ItlDriverInfo_h
|
|
#define ItlDriverInfo_h
|
|
|
|
class ItlDriverInfo {
|
|
|
|
public:
|
|
|
|
virtual const char *getFirmwareVersion() = 0;
|
|
|
|
virtual int16_t getBSSNoise() = 0;
|
|
|
|
virtual bool is5GBandSupport() = 0;
|
|
|
|
virtual int getTxNSS() = 0;
|
|
|
|
virtual const char *getFirmwareName() = 0;
|
|
|
|
virtual UInt32 supportedFeatures() = 0;
|
|
|
|
virtual const char *getFirmwareCountryCode() = 0;
|
|
|
|
virtual uint32_t getTxQueueSize() = 0;
|
|
};
|
|
|
|
#endif /* ItlDriverInfo_h */
|