diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2020-05-25 00:27:18 -0400 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2020-05-31 14:57:06 -0400 |
commit | 835ec3513d07e0d1aa94c4a66e7763d369510d08 (patch) | |
tree | 20b9b60053e588d5a7ecdf74fe9d883201e8dac9 /src/Kconfig | |
parent | b80d2f77060f15ed955cd00776c201391a401a83 (diff) | |
download | kutter-835ec3513d07e0d1aa94c4a66e7763d369510d08.tar.gz kutter-835ec3513d07e0d1aa94c4a66e7763d369510d08.tar.xz kutter-835ec3513d07e0d1aa94c4a66e7763d369510d08.zip |
Kconfig: Add a new CONFIG_HAVE_STRICT_TIMING build definition
Add a new build definition to note micro-controllers that have strict
timing. The Linux mcu code does not have strict timing - all other
targets currently do.
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'src/Kconfig')
-rw-r--r-- | src/Kconfig | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/Kconfig b/src/Kconfig index f82abc4a..818dd4f4 100644 --- a/src/Kconfig +++ b/src/Kconfig @@ -121,6 +121,9 @@ config HAVE_GPIO_HARD_PWM config HAVE_GPIO_BITBANGING bool default n +config HAVE_STRICT_TIMING + bool + default n config HAVE_CHIPID bool default n |