Changeset 1198

Show
Ignore:
Timestamp:
05/22/08 10:32:19 (16 years ago)
Author:
wagi
Message:

Set clock source always to 'Device Controlled'. The FA-66 doesn't support
switching clock source by software.

It might be possible to read out the current setting though. This is
a open TODO.

Furthermore, re-enable device discovering. This fixes a previous checkin r1183.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • branches/libffado-2.0/src/bebob/bebob_avdevice.cpp

    r1183 r1198  
    3232#include "bebob/terratec/terratec_device.h" 
    3333#include "bebob/edirol/edirol_fa101.h" 
     34#include "bebob/edirol/edirol_fa66.h" 
    3435#include "bebob/esi/quatafire610.h" 
    3536 
     
    99100    switch (vendorId) { 
    100101        case FW_VENDORID_EDIROL: 
    101             if (modelId == 0x00010048 ) { 
    102                 return new Edirol::EdirolFa101Device(d, configRom); 
     102            switch (modelId) { 
     103                case 0x00010048: 
     104                    return new Edirol::EdirolFa101Device(d, configRom); 
     105                case 0x00010049: 
     106                    return new Edirol::EdirolFa66Device(d, configRom); 
     107                default: 
     108                    return new AvDevice(d, configRom); 
    103109            } 
    104110        case FW_VENDORID_ESI: 
  • branches/libffado-2.0/src/SConscript

    r1193 r1198  
    108108        bebob/terratec/terratec_cmd.cpp \ 
    109109        bebob/edirol/edirol_fa101.cpp \ 
     110        bebob/edirol/edirol_fa66.cpp \ 
    110111        bebob/esi/quatafire610.cpp \ 
    111112' )