From 82694b726584b90e269962467ce609c4229c05c9 Mon Sep 17 00:00:00 2001 From: Dan Halbert Date: Thu, 15 Sep 2022 20:31:08 -0400 Subject: [PATCH] remove extraneous copyrights --- ports/raspberrypi/common-hal/analogbufio/BufferedIn.c | 5 ----- ports/raspberrypi/common-hal/analogbufio/BufferedIn.h | 2 -- 2 files changed, 7 deletions(-) diff --git a/ports/raspberrypi/common-hal/analogbufio/BufferedIn.c b/ports/raspberrypi/common-hal/analogbufio/BufferedIn.c index f5f9dbde33..951c07af03 100644 --- a/ports/raspberrypi/common-hal/analogbufio/BufferedIn.c +++ b/ports/raspberrypi/common-hal/analogbufio/BufferedIn.c @@ -4,8 +4,6 @@ * The MIT License (MIT) * * SPDX-FileCopyrightText: Copyright (c) 2022 Lee Atkinson, MeanStride Technology, Inc. - * Copyright (c) 2013, 2014 Damien P. George - * Copyright (c) 2016 Scott Shawcroft for Adafruit Industries * * SPDX-License-Identifier: BSD-3-Clause * @@ -66,9 +64,6 @@ void common_hal_analogbufio_bufferedin_construct(analogbufio_bufferedin_obj_t *s self->bytes_per_sample = bytes_per_sample; self->sample_rate = sample_rate; - // Standard IO Init - stdio_init_all(); - // Init GPIO for analogue use: hi-Z, no pulls, disable digital input buffer. adc_init(); adc_gpio_init(pin->number); diff --git a/ports/raspberrypi/common-hal/analogbufio/BufferedIn.h b/ports/raspberrypi/common-hal/analogbufio/BufferedIn.h index b38bfc8738..8b183a1d70 100644 --- a/ports/raspberrypi/common-hal/analogbufio/BufferedIn.h +++ b/ports/raspberrypi/common-hal/analogbufio/BufferedIn.h @@ -4,8 +4,6 @@ * The MIT License (MIT) * * SPDX-FileCopyrightText: Copyright (c) 2022 Lee Atkinson, MeanStride Technology, Inc. - * Copyright (c) 2013, 2014 Damien P. George - * Copyright (c) 2016 Scott Shawcroft for Adafruit Industries * * SPDX-License-Identifier: BSD-3-Clause *