nuttx-apps/system/ptpd/Kconfig
Petteri Aimonen 5a992d4e18 Add basic IEEE-1588 PTP server/client
What works:
- Basic server & client operation
- Transmission and reception of announce, sync and follow-up

Still missing:
- SO_TIMINGS for getting more precise packet timestamps
- Implementation of delay_req and delay_resp packets
- Status and stop interfaces for the daemon
2023-10-06 17:25:23 +08:00

25 lines
501 B
Plaintext

#
# For a description of the syntax of this configuration file,
# see the file kconfig-language.txt in the NuttX tools repository.
#
config SYSTEM_PTPD
tristate "PTP daemon commands"
default n
select NETUTILS_PTPD
---help---
Enable 'ptpd' command to start the PTP daemon
if SYSTEM_PTPD
config SYSTEM_PTPD_PRIORITY
int "PTPD utility command task priority"
default 100
config SYSTEM_PTPD_STACKSIZE
int "PTPD utility command stack size"
default DEFAULT_TASK_STACKSIZE
endif # SYSTEM_PTPD