blob: bfe3097ddc8491713ce9acdaad51f52e49b11307 [file] [log] [blame]
Hongguang4092f2f2021-07-08 18:49:12 -07001/*
2 * Copyright 2021 The Android Open Source 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
17#pragma once
18
19#include <aidl/android/hardware/tv/tuner/BnLnb.h>
20#include <aidl/android/hardware/tv/tuner/ITuner.h>
21
22using namespace std;
23
24namespace aidl {
25namespace android {
26namespace hardware {
27namespace tv {
28namespace tuner {
29
30class Lnb : public BnLnb {
31 public:
32 Lnb();
33 Lnb(int id);
34
35 ::ndk::ScopedAStatus setCallback(const std::shared_ptr<ILnbCallback>& in_callback) override;
36 ::ndk::ScopedAStatus setVoltage(LnbVoltage in_voltage) override;
37 ::ndk::ScopedAStatus setTone(LnbTone in_tone) override;
38 ::ndk::ScopedAStatus setSatellitePosition(LnbPosition in_position) override;
39 ::ndk::ScopedAStatus sendDiseqcMessage(const std::vector<uint8_t>& in_diseqcMessage) override;
40 ::ndk::ScopedAStatus close() override;
41
42 int getId();
43
44 private:
45 int mId;
46 virtual ~Lnb();
47};
48
49} // namespace tuner
50} // namespace tv
51} // namespace hardware
52} // namespace android
53} // namespace aidl