mirror of https://github.com/rusefi/wideband.git
move adc to port
This commit is contained in:
parent
b2b05b0c45
commit
d878252b48
|
@ -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
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
#include "analog_input.h"
|
||||
#include "port.h"
|
||||
|
||||
#include "wideband_config.h"
|
||||
|
|
@ -5,7 +5,7 @@
|
|||
|
||||
#include "wideband_config.h"
|
||||
|
||||
#include "analog_input.h"
|
||||
#include "port.h"
|
||||
|
||||
// Stored results
|
||||
float nernstAc = 0;
|
||||
|
|
Loading…
Reference in New Issue