root/trunk/libffado/src/bebob/focusrite/focusrite_cmd.h

Revision 585, 2.0 kB (checked in by ppalmers, 17 years ago)

- Implement some device-specific details

Line 
1 /*
2  * Copyright (C) 2005-2007 by Pieter Palmers
3  *
4  * This file is part of FFADO
5  * FFADO = Free Firewire (pro-)audio drivers for linux
6  *
7  * FFADO is based upon FreeBoB
8  *
9  * This library is free software; you can redistribute it and/or
10  * modify it under the terms of the GNU Lesser General Public
11  * License version 2.1, as published by the Free Software Foundation;
12  *
13  * This library is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16  * Lesser General Public License for more details.
17  *
18  * You should have received a copy of the GNU Lesser General Public
19  * License along with this library; if not, write to the Free Software
20  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
21  * MA 02110-1301 USA
22  */
23
24 #ifndef FOCUSRITEVENDORDEPENDENT_H
25 #define FOCUSRITEVENDORDEPENDENT_H
26
27 #include "libavc/general/avc_generic.h"
28 #include "libavc/util/avc_serialize.h"
29 #include "libavc/general/avc_vendor_dependent_cmd.h"
30
31 #include <libavc1394/avc1394.h>
32
33 #define FOCUSRITE_CMD_ID_SAMPLERATE 84
34 #define FOCUSRITE_CMD_ID_PHANTOM14  98
35 #define FOCUSRITE_CMD_ID_PHANTOM58  99
36
37 #define FOCUSRITE_CMD_SAMPLERATE_44K1   1
38 #define FOCUSRITE_CMD_SAMPLERATE_48K    2
39 #define FOCUSRITE_CMD_SAMPLERATE_88K2   3
40 #define FOCUSRITE_CMD_SAMPLERATE_96K    4
41 #define FOCUSRITE_CMD_SAMPLERATE_176K4  5
42 #define FOCUSRITE_CMD_SAMPLERATE_192K   6
43
44 namespace BeBoB {
45 namespace Focusrite {
46
47 class FocusriteVendorDependentCmd: public AVC::VendorDependentCmd
48 {
49 public:
50     FocusriteVendorDependentCmd(Ieee1394Service& ieee1394service);
51     virtual ~FocusriteVendorDependentCmd();
52
53     virtual bool serialize( AVC::IOSSerialize& se );
54     virtual bool deserialize( AVC::IISDeserialize& de );
55
56     virtual const char* getCmdName() const
57     { return "FocusriteVendorDependentCmd"; }
58    
59     byte_t m_arg1;
60     byte_t m_arg2;
61    
62     quadlet_t m_id;
63     quadlet_t m_value;
64    
65 };
66
67 }
68 }
69
70 #endif // FOCUSRITEVENDORDEPENDENT_H
Note: See TracBrowser for help on using the browser.