From 616d76cb7a7267f6befff1d98a27d9573a3c29f7 Mon Sep 17 00:00:00 2001 From: Glenn Ruben Bakke Date: Sun, 5 Feb 2017 16:17:12 +0100 Subject: [PATCH] nrf5/adc: Moving adc module into modules/machine. --- nrf5/Makefile | 2 +- nrf5/{ => modules/machine}/adc.c | 0 nrf5/{ => modules/machine}/adc.h | 0 3 files changed, 1 insertion(+), 1 deletion(-) rename nrf5/{ => modules/machine}/adc.c (100%) rename nrf5/{ => modules/machine}/adc.h (100%) diff --git a/nrf5/Makefile b/nrf5/Makefile index a4a47e3a6c..578bb056cd 100644 --- a/nrf5/Makefile +++ b/nrf5/Makefile @@ -143,7 +143,6 @@ SRC_C += \ modnetwork.c \ timer.c \ rtc.c \ - adc.c \ DRIVERS_SRC_C += $(addprefix modules/,\ display/moddisplay.c \ @@ -165,6 +164,7 @@ DRIVERS_SRC_C += $(addprefix modules/,\ machine/uart.c \ machine/spi.c \ machine/i2c.c \ + machine/adc.c \ ) #ifeq ($(SD), ) diff --git a/nrf5/adc.c b/nrf5/modules/machine/adc.c similarity index 100% rename from nrf5/adc.c rename to nrf5/modules/machine/adc.c diff --git a/nrf5/adc.h b/nrf5/modules/machine/adc.h similarity index 100% rename from nrf5/adc.h rename to nrf5/modules/machine/adc.h