From 1abc73e474f8811ade6a9573a8083fecfbfecc04 Mon Sep 17 00:00:00 2001 From: XANTRONIX Development Date: Mon, 28 Feb 2022 13:09:14 -0500 Subject: Add gain setting callback to xas_object --- src/object.c | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/object.c b/src/object.c index 55ea4af..f97deca 100644 --- a/src/object.c +++ b/src/object.c @@ -1,9 +1,13 @@ #include int xas_object_start(xas_object *object) { - object->start(object); + return object->start(object); } int xas_object_stop(xas_object *object) { - object->stop(object); + return object->stop(object); +} + +int xas_object_set_gain(xas_object *object, float gain) { + return object->set_gain(object, gain); } -- cgit v1.2.3