summaryrefslogtreecommitdiffstats
path: root/qcom/fmradio/FmReceiver.java
diff options
context:
space:
mode:
Diffstat (limited to 'qcom/fmradio/FmReceiver.java')
-rw-r--r--qcom/fmradio/FmReceiver.java38
1 files changed, 37 insertions, 1 deletions
diff --git a/qcom/fmradio/FmReceiver.java b/qcom/fmradio/FmReceiver.java
index 486dc33..732c0b2 100644
--- a/qcom/fmradio/FmReceiver.java
+++ b/qcom/fmradio/FmReceiver.java
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2009,2012-2013, The Linux Foundation. All rights reserved.
+ * Copyright (c) 2009,2012-2014, The Linux Foundation. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
@@ -1951,6 +1951,42 @@ public class FmReceiver extends FmTransceiver
return mControl.setPSRxRepeatCount(sFd, count);
}
+ public byte getBlendSinr() {
+ int state = getFMState();
+ if ((state == FMState_Turned_Off) || (state == FMState_Srch_InProg)) {
+ Log.d(TAG, "getBlendSinr: Device currently busy in executing another command.");
+ return Byte.MAX_VALUE;
+ }
+ return mControl.getBlendSinr(sFd);
+ }
+
+ public boolean setBlendSinr(byte sinrHi) {
+ int state = getFMState();
+ if ((state == FMState_Turned_Off) || (state == FMState_Srch_InProg)) {
+ Log.d(TAG, "setBlendSinr: Device currently busy in executing another command.");
+ return false;
+ }
+ return mControl.setBlendSinr(sFd, sinrHi);
+ }
+
+ public byte getBlendRmssi() {
+ int state = getFMState();
+ if ((state == FMState_Turned_Off) || (state == FMState_Srch_InProg)) {
+ Log.d(TAG, "getBlendRmssi: Device currently busy in executing another command.");
+ return Byte.MAX_VALUE;
+ }
+ return mControl.getBlendRmssi(sFd);
+ }
+
+ public boolean setBlendRmssi(byte rmssiHi) {
+ int state = getFMState();
+ if ((state == FMState_Turned_Off) || (state == FMState_Srch_InProg)) {
+ Log.d(TAG, "setBlendRmssi: Device currently busy in executing another command.");
+ return false;
+ }
+ return mControl.setBlendRmssi(sFd, rmssiHi);
+ }
+
/*==============================================================
FUNCTION: setRdsGroupOptions
==============================================================*/