diff options
| author | Paul Keith <javelinanddart@gmail.com> | 2020-01-27 20:19:37 -0600 |
|---|---|---|
| committer | Jan Altensen <info@stricted.net> | 2020-01-31 15:51:28 +0100 |
| commit | 0ab516d2b2dfba420f836e7cd1b1d198c53d930e (patch) | |
| tree | dc62069ed3d9cefe9f522349fd955e2379d6e433 /hidl | |
| parent | bde3a83a2b7fb50fc869d2d7600aeef11f289b8a (diff) | |
| download | hardware_samsung-0ab516d2b2dfba420f836e7cd1b1d198c53d930e.tar.gz hardware_samsung-0ab516d2b2dfba420f836e7cd1b1d198c53d930e.tar.bz2 hardware_samsung-0ab516d2b2dfba420f836e7cd1b1d198c53d930e.zip | |
hidl: consumerir: Add legacy samsung_consumerir header
Change-Id: I5eba753669b7c8ae6e63cb235cc16bf362c6c051
Diffstat (limited to 'hidl')
| -rw-r--r-- | hidl/consumerir/ConsumerIr.cpp | 2 | ||||
| -rw-r--r-- | hidl/consumerir/include/samsung_consumerir.h | 47 |
2 files changed, 49 insertions, 0 deletions
diff --git a/hidl/consumerir/ConsumerIr.cpp b/hidl/consumerir/ConsumerIr.cpp index 821dbe8..a594aab 100644 --- a/hidl/consumerir/ConsumerIr.cpp +++ b/hidl/consumerir/ConsumerIr.cpp @@ -16,6 +16,8 @@ #include "ConsumerIr.h" +#include <samsung_consumerir.h> + namespace android { namespace hardware { namespace ir { diff --git a/hidl/consumerir/include/samsung_consumerir.h b/hidl/consumerir/include/samsung_consumerir.h new file mode 100644 index 0000000..590b107 --- /dev/null +++ b/hidl/consumerir/include/samsung_consumerir.h @@ -0,0 +1,47 @@ +/* + * Copyright (C) 2016 The CyanogenMod Project + * + * 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. + */ + +#ifndef SAMSUNG_CONSUMERIR_H +#define SAMSUNG_CONSUMERIR_H + +/* + * Board specific nodes + * + * If your kernel exposes these controls in another place, you can either + * symlink to the locations given here, or override this header in your + * device tree. + */ +#define IR_PATH "/sys/class/sec/sec_ir/ir_send" + +/* + * Board specific configs + * + * If your device needs a different configuration, you + * can override this header in your device tree + */ +// Some devices need MS_IR_SIGNAL to avoid ms to pulses conversionn +//#define MS_IR_SIGNAL + +static const consumerir_freq_range_t consumerir_freqs[] = { + {.min = 30000, .max = 30000}, + {.min = 33000, .max = 33000}, + {.min = 36000, .max = 36000}, + {.min = 38000, .max = 38000}, + {.min = 40000, .max = 40000}, + {.min = 56000, .max = 56000}, +}; + +#endif // SAMSUNG_CONSUMERIR_H |
