1# Copyright 2025 NXP 2# SPDX-License-Identifier: Apache-2.0 3 4menu "CRC sample application" 5 6choice SAMPLE_CRC_VARIANT 7 prompt "CRC variant to run" 8 default SAMPLE_CRC_VARIANT_CRC8 9 help 10 Choose which CRC algorithm the sample computes. 11 12config SAMPLE_CRC_VARIANT_CRC8 13 bool "CRC8" 14 15config SAMPLE_CRC_VARIANT_CRC16_CCITT 16 bool "CRC16-CCITT" 17 18config SAMPLE_CRC_VARIANT_CRC32_IEEE 19 bool "CRC32-IEEE" 20 21config SAMPLE_CRC_VARIANT_CRC32_C 22 bool "CRC32-C" 23 24endchoice 25 26endmenu 27 28source "Kconfig.zephyr" 29