zephyr/lib/smf/Kconfig
Sam Hurst cb4785542e lib: smf: Add State Machine Framework
Add an application agnostic State Machine Framework library to
Zephyr that provides an easy way for developers to integrate
state machines into their application.

Twister passed:
twister -T tests/lib/smf/

Signed-off-by: Sam Hurst <sbh1187@gmail.com>
2021-10-04 20:33:11 -04:00

17 lines
382 B
Plaintext

# Copyright 2021 The Chromium OS Authors
# SPDX-License-Identifier: Apache-2.0
config SMF
bool "Enable Hierarchical State Machine"
help
This option enables the Hierarchical State Machine library
if SMF
config SMF_ANCESTOR_SUPPORT
bool "Enable states to have 1 or more ancestors"
help
If y, then the state machine framework includes ancestor state support
endif # SMF