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; // w w w. j a va2 s . c om import java.io.IOException; public class FC0012 implements IRtlSdrTuner { private static final String TAG = FC0012.class.getSimpleName(); @Override public int init(int param) throws IOException { // TODO Auto-generated method stub return 0; } @Override public int exit(int param) throws IOException { // TODO Auto-generated method stub return 0; } @Override public int set_freq(int param, long freq) throws IOException { // TODO Auto-generated method stub return 0; } @Override public int set_bw(int param, int bw) throws IOException { // TODO Auto-generated method stub return 0; } @Override public int set_gain(int param, int gain) throws IOException { // TODO Auto-generated method stub return 0; } @Override public int set_if_gain(int param, int stage, int gain) throws IOException { // TODO Auto-generated method stub return 0; } @Override public int set_gain_mode(int param, boolean manual) throws IOException { // TODO Auto-generated method stub return 0; } }