blob: 9696fa08f2a3d9d5d1b1629b3122bbc6704710ab [file] [log] [blame]
Paul Keithbde3a832020-01-27 20:19:30 -06001/*
2 * Copyright (C) 2020 The LineageOS Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
Paul Keithaf24a5d2020-01-27 20:19:23 -060017#include "ConsumerIr.h"
18
Paul Keithb43a8d52020-01-27 20:19:45 -060019#include <samsung_ir.h>
Paul Keith0ab516d2020-01-27 20:19:37 -060020
Paul Keith0322a6f2020-01-27 20:19:53 -060021#include <android-base/file.h>
22#include <android-base/strings.h>
23
24using android::base::Join;
25using android::base::WriteStringToFile;
26
Paul Keithaf24a5d2020-01-27 20:19:23 -060027namespace android {
28namespace hardware {
29namespace ir {
30namespace V1_0 {
31namespace implementation {
32
33// Methods from ::android::hardware::ir::V1_0::IConsumerIr follow.
34Return<bool> ConsumerIr::transmit(int32_t carrierFreq, const hidl_vec<int32_t>& pattern) {
Paul Keith0322a6f2020-01-27 20:19:53 -060035 float factor;
36 std::vector<int32_t> buffer{carrierFreq};
37
38#ifndef MS_IR_SIGNAL
39 // Calculate factor of conversion from microseconds to pulses
40 factor = 1000000 / carrierFreq;
41#else
42 factor = 1;
43#endif
44
45 for (const int32_t& number : pattern) {
46 buffer.emplace_back(number / factor);
47 }
48
49 return WriteStringToFile(Join(buffer, ','), IR_PATH, true);
Paul Keithaf24a5d2020-01-27 20:19:23 -060050}
51
52Return<void> ConsumerIr::getCarrierFreqs(getCarrierFreqs_cb _hidl_cb) {
Paul Keith0322a6f2020-01-27 20:19:53 -060053 _hidl_cb(true, consumerirFreqs);
Paul Keithaf24a5d2020-01-27 20:19:23 -060054 return Void();
55}
56
Paul Keithaf24a5d2020-01-27 20:19:23 -060057} // namespace implementation
58} // namespace V1_0
59} // namespace ir
60} // namespace hardware
61} // namespace android