1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
|
# This is a sample quisk_conf.py configuration file for
# the Funcube Dongle.
# Please do not change this sample file.
# Instead copy it to your own .quisk_conf.py and make changes there.
# See quisk_conf_defaults.py for more information.
# The default hardware module was already imported. Import a different one here.
# import quisk_hardware_fixed as quisk_hardware
# In ALSA, soundcards have these names. The "hw" devices are the raw
# hardware devices, and should be used for soundcard capture.
#name_of_sound_capt = "hw:0"
#name_of_sound_capt = "hw:1"
#name_of_sound_capt = "plughw"
#name_of_sound_capt = "plughw:1"
#name_of_sound_capt = "default"
# It is likely that your main soundcard is "hw:0"
# and the Funcube Dongle appears as "hw:1"
sample_rate = 96000 # ADC hardware sample rate in Hertz
name_of_sound_capt = "hw:1" # Name of Funcube Dongle soundcard capture hardware device.
name_of_sound_play = "hw:0" # Use the main system soundcard for play back
channel_i = 0 # Soundcard index of in-phase channel: 0, 1, 2, ...
channel_q = 1 # Soundcard index of quadrature channel: 0, 1, 2, ...
|