mirror of
https://github.com/ShaYmez/xlxd.git
synced 2024-11-07 16:26:06 -05:00
0b5f1fbdd4
added amber version 1.0.0
78 lines
2.6 KiB
C++
78 lines
2.6 KiB
C++
//
|
|
// cftdidevicedescr.h
|
|
// ambed
|
|
//
|
|
// Created by Jean-Luc Deltombe (LX3JL) on 02/06/2017.
|
|
// Copyright © 2015 Jean-Luc Deltombe (LX3JL). All rights reserved.
|
|
//
|
|
// ----------------------------------------------------------------------------
|
|
// This file is part of ambed.
|
|
//
|
|
// xlxd 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 3 of the License, or
|
|
// (at your option) any later version.
|
|
//
|
|
// xlxd 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.
|
|
//
|
|
// You should have received a copy of the GNU General Public License
|
|
// along with Foobar. If not, see <http://www.gnu.org/licenses/>.
|
|
// ----------------------------------------------------------------------------
|
|
|
|
#ifndef cftdidevicedescr_h
|
|
#define cftdidevicedescr_h
|
|
|
|
#include <string.h>
|
|
#include "ftd2xx.h"
|
|
|
|
////////////////////////////////////////////////////////////////////////////////////////
|
|
// define
|
|
|
|
#define FTDI_MAX_STRINGLENGTH 256
|
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////////////////////////
|
|
// class
|
|
|
|
class CFtdiDeviceDescr
|
|
{
|
|
public:
|
|
// constructors
|
|
CFtdiDeviceDescr(void);
|
|
CFtdiDeviceDescr(uint32, uint32, const char *, const char *);
|
|
CFtdiDeviceDescr(const CFtdiDeviceDescr &);
|
|
|
|
// destructor
|
|
virtual ~CFtdiDeviceDescr() {}
|
|
|
|
// get
|
|
bool IsUsed(void) const {return m_bUsed; }
|
|
bool IsUsb3000(void) const { return (::strcmp(m_szDescription, "USB-3000") == 0); }
|
|
bool IsUsb3003(void) const { return (::strcmp(m_szDescription, "USB-3003") == 0); }
|
|
bool IsUsb3012(void) const { return (::strcmp(m_szDescription, "USB-3012 A") == 0); }
|
|
uint32 GetVid(void) const { return m_uiVid; }
|
|
uint32 GetPid(void) const { return m_uiPid; }
|
|
const char *GetDescription(void) const { return m_szDescription; }
|
|
const char *GetSerialNumber(void) const { return m_szSerial; }
|
|
|
|
// set
|
|
void SetUsed(bool used) { m_bUsed = used; }
|
|
|
|
protected:
|
|
// status
|
|
bool m_bUsed;
|
|
|
|
// data
|
|
uint32 m_uiVid;
|
|
uint32 m_uiPid;
|
|
char m_szDescription[FTDI_MAX_STRINGLENGTH];
|
|
char m_szSerial[FTDI_MAX_STRINGLENGTH];
|
|
};
|
|
|
|
////////////////////////////////////////////////////////////////////////////////////////
|
|
#endif /* cftdidevicedescr_h */
|