Paul Keith | bde3a83 | 2020-01-27 20:19:30 -0600 | [diff] [blame] | 1 | /* |
| 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 Keith | af24a5d | 2020-01-27 20:19:23 -0600 | [diff] [blame] | 17 | #include "ConsumerIr.h" |
| 18 | |
Paul Keith | b43a8d5 | 2020-01-27 20:19:45 -0600 | [diff] [blame] | 19 | #include <samsung_ir.h> |
Paul Keith | 0ab516d | 2020-01-27 20:19:37 -0600 | [diff] [blame] | 20 | |
Paul Keith | 0322a6f | 2020-01-27 20:19:53 -0600 | [diff] [blame^] | 21 | #include <android-base/file.h> |
| 22 | #include <android-base/strings.h> |
| 23 | |
| 24 | using android::base::Join; |
| 25 | using android::base::WriteStringToFile; |
| 26 | |
Paul Keith | af24a5d | 2020-01-27 20:19:23 -0600 | [diff] [blame] | 27 | namespace android { |
| 28 | namespace hardware { |
| 29 | namespace ir { |
| 30 | namespace V1_0 { |
| 31 | namespace implementation { |
| 32 | |
| 33 | // Methods from ::android::hardware::ir::V1_0::IConsumerIr follow. |
| 34 | Return<bool> ConsumerIr::transmit(int32_t carrierFreq, const hidl_vec<int32_t>& pattern) { |
Paul Keith | 0322a6f | 2020-01-27 20:19:53 -0600 | [diff] [blame^] | 35 | 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 Keith | af24a5d | 2020-01-27 20:19:23 -0600 | [diff] [blame] | 50 | } |
| 51 | |
| 52 | Return<void> ConsumerIr::getCarrierFreqs(getCarrierFreqs_cb _hidl_cb) { |
Paul Keith | 0322a6f | 2020-01-27 20:19:53 -0600 | [diff] [blame^] | 53 | _hidl_cb(true, consumerirFreqs); |
Paul Keith | af24a5d | 2020-01-27 20:19:23 -0600 | [diff] [blame] | 54 | return Void(); |
| 55 | } |
| 56 | |
Paul Keith | af24a5d | 2020-01-27 20:19:23 -0600 | [diff] [blame] | 57 | } // namespace implementation |
| 58 | } // namespace V1_0 |
| 59 | } // namespace ir |
| 60 | } // namespace hardware |
| 61 | } // namespace android |