Back to project page android-rtlsdr.
The source code is released under:
GNU General Public License
If you think the Android project android-rtlsdr listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.rtlsdr.android.tuners; //from www. j a v a2 s . com import java.io.IOException; public interface IRtlSdrTuner { int init(int param) throws IOException; int exit(int param) throws IOException; int set_freq(int param, long freq /* Hz */) throws IOException; int set_bw(int param, int bw /* Hz */) throws IOException; int set_gain(int param, int gain /* tenth dB */) throws IOException; int set_if_gain(int param, int stage, int gain /* tenth dB */) throws IOException; int set_gain_mode(int param, boolean manual) throws IOException; }