Commit 5563b8a8 authored by Javier Peletier's avatar Javier Peletier Committed by Marcel Stör
Browse files

hotfix: fix Makefile BAUDRATE default value for non-Windows OS (#2693)

parent 38262e99
...@@ -48,6 +48,9 @@ export summary := @echo ...@@ -48,6 +48,9 @@ export summary := @echo
MAKEFLAGS += --silent -w MAKEFLAGS += --silent -w
endif # $(V)==1 endif # $(V)==1
ifndef BAUDRATE
BAUDRATE=115200
endif
############################################################# #############################################################
# Select compile # Select compile
...@@ -82,9 +85,6 @@ ifeq ($(OS),Windows_NT) ...@@ -82,9 +85,6 @@ ifeq ($(OS),Windows_NT)
else else
ESPPORT = $(COMPORT) ESPPORT = $(COMPORT)
endif endif
ifndef BAUDRATE
BAUDRATE=115200
endif
ifeq ($(PROCESSOR_ARCHITECTURE),AMD64) ifeq ($(PROCESSOR_ARCHITECTURE),AMD64)
# ->AMD64 # ->AMD64
endif endif
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment