Kconfig.projbuild 519 B

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