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/pru | |
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/pru')
-rw-r--r-- | src/pru/Kconfig | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/pru/Kconfig b/src/pru/Kconfig index bc521536..8956e6bc 100644 --- a/src/pru/Kconfig +++ b/src/pru/Kconfig @@ -7,6 +7,7 @@ config PRU_SELECT default y select HAVE_GPIO #select HAVE_GPIO_ADC + select HAVE_STRICT_TIMING config BOARD_DIRECTORY string |