mirror of https://github.com/g4klx/MMDVM.git
Corrected Makefile.CMSIS and IOSTM_CMSIS.cpp to enable compilation
without errors
This commit is contained in:
parent
ab09848afd
commit
70dfb0964e
|
@ -295,9 +295,6 @@ void CIO::initInt()
|
|||
GPIOInit();
|
||||
ADCInit();
|
||||
DACInit();
|
||||
#if defined(STM32F1_POG)
|
||||
FancyLEDEffect();
|
||||
#endif
|
||||
}
|
||||
|
||||
void CIO::startInt()
|
||||
|
|
|
@ -141,7 +141,7 @@ $(OBJDIR):
|
|||
$(BINDIR):
|
||||
mkdir -p $(BINDIR)
|
||||
|
||||
$(ELF): $(BINDIR) $(OBJ)
|
||||
$(ELF): $(OBJDIR) $(BINDIR) $(OBJ)
|
||||
$(LD) $(OBJ) $(LDFLAGS) $(LDLIBS) -o $@
|
||||
|
||||
$(DIS): $(ELF)
|
||||
|
|
Loading…
Reference in New Issue