summaryrefslogtreecommitdiff
path: root/utils/tuning/libtuning/modules/agc/agc.py
blob: 9c8899badc795d3f44123ed7cddc8c7f5fce8166 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# SPDX-License-Identifier: BSD-2-Clause
#
# Copyright (C) 2019, Raspberry Pi Ltd
# Copyright (C) 2024, Paul Elder <paul.elder@ideasonboard.com>

from ..module import Module

import libtuning as lt


class AGC(Module):
    type = 'agc'
    hr_name = 'AGC (Base)'
    out_name = 'GenericAGC'

    # \todo Add sector shapes and stuff just like lsc
    def __init__(self, *,
                 debug: list):
        super().__init__()

        self.debug = debug