• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
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 
22 using namespace std;
23 
24 namespace aidl {
25 namespace android {
26 namespace hardware {
27 namespace tv {
28 namespace tuner {
29 
30 class 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     std::shared_ptr<ILnbCallback> mCallback;
48 };
49 
50 }  // namespace tuner
51 }  // namespace tv
52 }  // namespace hardware
53 }  // namespace android
54 }  // namespace aidl
55