From fc15b1d1dbca957c1cb16aa60e3877379a4635f0 Mon Sep 17 00:00:00 2001 From: Greg Shuflin Date: Wed, 3 Mar 2021 01:19:14 -0800 Subject: [PATCH] Remove radio.c --- Makefile | 3 +-- radio.c | 37 ------------------------------------- 2 files changed, 1 insertion(+), 39 deletions(-) delete mode 100644 radio.c diff --git a/Makefile b/Makefile index fea8bc7..c8c03a7 100644 --- a/Makefile +++ b/Makefile @@ -4,7 +4,7 @@ VERSION = $(shell git describe --tags --abbrev=0) GITCOUNT = $(shell git rev-list HEAD --count) UNAME = $(shell uname) VERSION_STR = '$(VERSION).$(GITCOUNT)' -OBJS = main.o util.o radio.o dfu-libusb.o uv380.o md380.o rd5r.o \ +OBJS = main.o util.o dfu-libusb.o uv380.o md380.o rd5r.o \ gd77.o hid.o serial.o d868uv.o dm1801.o CFLAGS ?= -g -O -Wall -Werror CFLAGS += -DVERSION='"$(VERSION).$(GITCOUNT)"' \ @@ -74,7 +74,6 @@ hid-macos.o: hid-macos.c util.h hid-windows.o: hid-windows.c util.h main.o: main.c radio.h util.h md380.o: md380.c radio.h util.h -radio.o: radio.c radio.h util.h rd5r.o: rd5r.c radio.h util.h serial.o: serial.c util.h util.o: util.c util.h diff --git a/radio.c b/radio.c deleted file mode 100644 index 7a1f2e5..0000000 --- a/radio.c +++ /dev/null @@ -1,37 +0,0 @@ -/* - * Configuration Utility for DMR radios. - * - * Copyright (C) 2018 Serge Vakulenko, KK6ABQ - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions are met: - * - * 1. Redistributions of source code must retain the above copyright notice, - * this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * 3. The name of the author may not be used to endorse or promote products - * derived from this software without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED - * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF - * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO - * EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, - * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, - * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; - * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, - * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR - * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF - * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - */ -#include -#include -#include -#include -#include -#include -#include -#include "radio.h" -#include "util.h" -