Skip to content

Commit

Permalink
hotfix: fix Makefile BAUDRATE default value for non-Windows OS (nodem…
Browse files Browse the repository at this point in the history
  • Loading branch information
jpeletier authored and marcelstoer committed Mar 15, 2019
1 parent 38262e9 commit 5563b8a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,9 @@ export summary := @echo
MAKEFLAGS += --silent -w
endif # $(V)==1

ifndef BAUDRATE
BAUDRATE=115200
endif

#############################################################
# Select compile
Expand Down Expand Up @@ -82,9 +85,6 @@ ifeq ($(OS),Windows_NT)
else
ESPPORT = $(COMPORT)
endif
ifndef BAUDRATE
BAUDRATE=115200
endif
ifeq ($(PROCESSOR_ARCHITECTURE),AMD64)
# ->AMD64
endif
Expand Down

0 comments on commit 5563b8a

Please sign in to comment.