zynq_7010/TypeIO.h

25 lines
449 B
C++

#pragma once
#include "Gpio.h"
#include "DevUtil.h"
#include "scanservices_utils.h"
#include <vector>
#include "scannersysinfo.h"
class TypeIO
{
private:
/* data */
public:
TypeIO(PORTS s0,PORTS s1,PORTS s2,PORTS s3);
CISVendor GetCisType();
SMBType GetMotorType();
~TypeIO();
private:
Gpio gpio_s0;
Gpio gpio_s1;
Gpio gpio_s2;
Gpio gpio_s3;
CISVendor cisven;
SMBType smbtype;
};