1menu "Example Configuration" 2 3 choice SNTP_TIME_SYNC_METHOD 4 prompt "Time synchronization method" 5 default SNTP_TIME_SYNC_METHOD_IMMED 6 help 7 Time synchronization method. 8 9 config SNTP_TIME_SYNC_METHOD_IMMED 10 bool "update time immediately when received" 11 config SNTP_TIME_SYNC_METHOD_SMOOTH 12 bool "update time with smooth method (adjtime)" 13 config SNTP_TIME_SYNC_METHOD_CUSTOM 14 bool "custom implementation" 15 endchoice 16 17endmenu 18