aboutsummaryrefslogtreecommitdiffstats
path: root/tools/FM/FmRadioIf/src/java/com/ti/core/JFmRxStatus.java
diff options
context:
space:
mode:
Diffstat (limited to 'tools/FM/FmRadioIf/src/java/com/ti/core/JFmRxStatus.java')
-rw-r--r--tools/FM/FmRadioIf/src/java/com/ti/core/JFmRxStatus.java45
1 files changed, 45 insertions, 0 deletions
diff --git a/tools/FM/FmRadioIf/src/java/com/ti/core/JFmRxStatus.java b/tools/FM/FmRadioIf/src/java/com/ti/core/JFmRxStatus.java
new file mode 100644
index 0000000..d2ebdc2
--- /dev/null
+++ b/tools/FM/FmRadioIf/src/java/com/ti/core/JFmRxStatus.java
@@ -0,0 +1,45 @@
+/*
+ *
+ * Copyright 2001-2011 Texas Instruments, Inc. - http://www.ti.com/
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+package com.ti.jfm.core;
+
+public enum JFmRxStatus implements IJFmEnum<Integer> {
+
+ SUCCESS(0), FAILED(1), PENDING(2), INVALID_PARM(3), IN_PROGRESS(4), NOT_APPLICABLE(5), NOT_SUPPORTED(
+ 6), INTERNAL_ERROR(7), TRANSPORT_INIT_ERR(8), HARDWARE_ERR(9), NO_VALUE_AVAILABLE(10), CONTEXT_DOESNT_EXIST(
+ 11), CONTEXT_NOT_DESTROYED(12), CONTEXT_NOT_ENABLED(13), CONTEXT_NOT_DISABLED(14), NOT_DE_INITIALIZED(
+ 15), NOT_INITIALIZED(16), TOO_MANY_PENDING_CMDS(17), DISABLING_IN_PROGRESS(18), SCRIPT_EXEC_FAILED(
+ 21), FAILED_BT_NOT_INITIALIZED(23), AUDIO_OPERATION_UNAVAILIBLE_RESOURCES(24), FM_TX_ALREADY_ENABLED(
+ 101), SEEK_IN_PROGRESS(102), SEEK_IS_NOT_IN_PROGRESS(103), AF_IN_PROGRESS(104), RDS_IS_NOT_ENABLED(
+ 105), SEEK_REACHED_BAND_LIMIT(106), SEEK_STOPPED(107), SEEK_SUCCESS(108), STOP_SEEK(109), /*
+ * Internal
+ * use
+ */
+ PENDING_UPDATE_CMD_PARAMS(110), FAILED_ALREADY_PENDING(111), INVALID_TYPE(112), CMD_TYPE_WAS_ALREADY_ALLOCATED(
+ 113), AF_SWITCH_FAILED_LIST_EXHAUSTED(114), COMPLETE_SCAN_IS_NOT_IN_PROGRESS(115), COMPLETE_SCAN_STOPPED(
+ 116), NO_VALUE(100);
+
+ private final int value;
+
+ private JFmRxStatus(int value) {
+ this.value = value;
+ }
+
+ public Integer getValue() {
+ return value;
+ }
+}