-
Notifications
You must be signed in to change notification settings - Fork 124
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
allow changing of baudrate at compile time
- Loading branch information
Joshua Booth
committed
Jan 4, 2019
1 parent
24ccfcc
commit dde00f1
Showing
7 changed files
with
22 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,11 @@ | ||
PROGRAM=dpsproxy | ||
|
||
# The baudrate used for serial communications, defaults to 115200 | ||
BAUDRATE ?= 115200 | ||
|
||
OTA=1 | ||
EXTRA_COMPONENTS=extras/rboot-ota extras/stdin_uart_interrupt | ||
PROGRAM_INC_DIR = . ./../opendps ./uhej | ||
PROGRAM_SRC_DIR=. ./uhej | ||
PROGRAM_CFLAGS+=-DCONFIG_BAUDRATE=$(BAUDRATE) | ||
include esp-open-rtos/common.mk |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters