move adc to port

This commit is contained in:
Matthew Kennedy 2021-02-25 22:39:51 -08:00
parent b2b05b0c45
commit d878252b48
4 changed files with 4 additions and 4 deletions

View File

@ -124,8 +124,8 @@ CSRC = $(ALLCSRC) $(BOARDDIR)/board.c
# C++ sources that can be compiled in ARM or THUMB mode depending on the global
# setting.
CPPSRC = $(ALLCPPSRC) \
$(BOARDDIR)/port.cpp \
shared/flash.cpp \
analog_input.cpp \
can.cpp \
can_helper.cpp \
fault.cpp \
@ -146,7 +146,7 @@ ASMSRC = $(ALLASMSRC)
ASMXSRC = $(ALLXASMSRC)
# Inclusion directories.
INCDIR = $(CONFDIR) $(ALLINC) $(TESTINC)
INCDIR = $(CONFDIR) $(ALLINC) $(TESTINC) boards/
# Define C warning options here.
CWARN = -Wall -Wextra -Wundef -Wstrict-prototypes

View File

@ -1,4 +1,4 @@
#include "analog_input.h"
#include "port.h"
#include "wideband_config.h"

View File

@ -5,7 +5,7 @@
#include "wideband_config.h"
#include "analog_input.h"
#include "port.h"
// Stored results
float nernstAc = 0;