mirror of
https://github.com/LX3JL/xlxd.git
synced 2026-04-04 14:07:31 +00:00
ambed version 1.0.0
added amber version 1.0.0
This commit is contained in:
parent
9eb47b28c1
commit
0b5f1fbdd4
44 changed files with 6687 additions and 0 deletions
70
ambed/cusb3003interface.h
Normal file
70
ambed/cusb3003interface.h
Normal file
|
|
@ -0,0 +1,70 @@
|
|||
//
|
||||
// cusb3003interface.h
|
||||
// ambed
|
||||
//
|
||||
// Created by Jean-Luc Deltombe (LX3JL) on 23/04/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 cusb3003interface_h
|
||||
#define cusb3003interface_h
|
||||
|
||||
#include "ftd2xx.h"
|
||||
#include "cbuffer.h"
|
||||
#include "cusb3xxxinterface.h"
|
||||
|
||||
////////////////////////////////////////////////////////////////////////////////////////
|
||||
// define
|
||||
|
||||
#define USB3003_NB_CH 3
|
||||
|
||||
////////////////////////////////////////////////////////////////////////////////////////
|
||||
// class
|
||||
|
||||
class CUsb3003Interface : public CUsb3xxxInterface
|
||||
{
|
||||
public:
|
||||
// constructors
|
||||
CUsb3003Interface(uint32, uint32, const char *, const char *);
|
||||
|
||||
// destructor
|
||||
virtual ~CUsb3003Interface() {}
|
||||
|
||||
// initialization
|
||||
bool Init(uint8);
|
||||
|
||||
// manage channels
|
||||
int GetNbChannels(void) const { return USB3003_NB_CH; }
|
||||
uint8 GetChannelCodec(int) const;
|
||||
|
||||
// manage vocodec channels
|
||||
CVocodecChannel *GetChannelWithChannelIn(int);
|
||||
CVocodecChannel *GetChannelWithChannelOut(int);
|
||||
|
||||
protected:
|
||||
// low level
|
||||
bool SoftResetDevice(void);
|
||||
bool ConfigureDevice(void);
|
||||
|
||||
// data
|
||||
uint8 m_uiChCodecs[USB3003_NB_CH];
|
||||
};
|
||||
|
||||
////////////////////////////////////////////////////////////////////////////////////////
|
||||
#endif /* cusb3003interface_h */
|
||||
Loading…
Add table
Add a link
Reference in a new issue