# SPDX-License-Identifier: GPL-2.0
	
config TEST_EMPTY
	bool "Empty test"

config TEST_SEMA
	bool "Semaphore test"
	select SCHEDULER
	select USE_SEMA

config TEST_PI1
	bool "Mutex Priority inheritance test"
	select SCHEDULER
	select USE_MUTEX
	select USE_SEMA

config TEST_OTHER
	select SCHEDULER
	select TICK_TIMER
	select SCHED_OTHER
	bool "Test sched_other"

config TEST_TIMER
	bool "Timer test"
	select TIMER

config TEST_SONG
	bool "Play a song"
	select TIMER
	select DEL_TIMER

config TEST_MORSE
	bool "Output Hello World on morse console"
	select SERIAL_MORSE
	select MAIN_FUNCTION
	select TIMER
	depends on !SCHEDULER

config TEST_USART
	bool "Test the USART"
	select SERIAL_AVR
	select SERIAL_AVR_CONSOLE
	select SERIAL_AVR_TX
	select SERIAL_AVR_RX
	select PRINTK

config TEST_USART_SCHED
	bool "USART scheduler test"
	select SERIAL_AVR
	select SCHEDULER
