diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2019-01-25 17:55:57 -0500 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2019-01-25 18:02:03 -0500 |
commit | b6ccd2682c57688a55a408abaa87a6cc61924cf2 (patch) | |
tree | fa2a9b461186af84c60fb1be599182c176f8cfef /src/Kconfig | |
parent | 4fec225115777a028a00a4797663e00e8bd96ce1 (diff) | |
download | kutter-b6ccd2682c57688a55a408abaa87a6cc61924cf2.tar.gz kutter-b6ccd2682c57688a55a408abaa87a6cc61924cf2.tar.xz kutter-b6ccd2682c57688a55a408abaa87a6cc61924cf2.zip |
Kconfig: Move SERIAL_BAUD to src/Kconfig and show with LOW_LEVEL_OPTIONS
Move the definition of SERIAL_BAUD to the main src/Kconfig file. Only
show this as an option if the user selects the ability to configure
low-level options.
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'src/Kconfig')
-rw-r--r-- | src/Kconfig | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/Kconfig b/src/Kconfig index 6add97a3..f667dae4 100644 --- a/src/Kconfig +++ b/src/Kconfig @@ -38,6 +38,14 @@ source "src/pru/Kconfig" source "src/linux/Kconfig" source "src/simulator/Kconfig" +# Generic configuration options for serial ports +config SERIAL_BAUD + depends on SERIAL + int "Baud rate for serial port" if LOW_LEVEL_OPTIONS + default 250000 + help + Specify the baud rate of the serial port. This should be set + to 250000. Read the FAQ before changing this value. # Step timing customization config CUSTOM_STEP_DELAY |