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
MAKEFLAGS += --silent -w
endif # $(V)==1
ifndef BAUDRATE
BAUDRATE=115200
endif
#############################################################
# Select compile
......@@ -82,9 +85,6 @@ ifeq ($(OS),Windows_NT)
else
ESPPORT = $(COMPORT)
endif
ifndef BAUDRATE
BAUDRATE=115200
endif
ifeq ($(PROCESSOR_ARCHITECTURE),AMD64)
# ->AMD64
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