Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

oopt-tai/inc:Add enum for modulation-format #166

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions inc/tainetworkif.h
Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,9 @@ typedef enum _tai_network_interface_modulation_format_t
TAI_NETWORK_INTERFACE_MODULATION_FORMAT_DP_32_QAM,
TAI_NETWORK_INTERFACE_MODULATION_FORMAT_64_QAM,
TAI_NETWORK_INTERFACE_MODULATION_FORMAT_DP_64_QAM,
TAI_NETWORK_INTERFACE_MODULATION_FORMAT_DP_16_QAM_PS, /*Probabilistic Shaping*/
TAI_NETWORK_INTERFACE_MODULATION_FORMAT_DP_32_QAM_PS, /*Probabilistic Shaping*/
TAI_NETWORK_INTERFACE_MODULATION_FORMAT_DP_64_QAM_PS, /*Probabilistic Shaping*/
TAI_NETWORK_INTERFACE_MODULATION_FORMAT_MAX
} tai_network_interface_modulation_format_t;

Expand All @@ -114,6 +117,7 @@ typedef enum _tai_network_interface_fec_type_t
TAI_NETWORK_INTERFACE_FEC_TYPE_SC_FEC,
TAI_NETWORK_INTERFACE_FEC_TYPE_CFEC,
TAI_NETWORK_INTERFACE_FEC_TYPE_OFEC,
TAI_NETWORK_INTERFACE_FEC_TYPE_NONE,
} tai_network_interface_fec_type_t;

/** @brief The client signal mapping type */
Expand Down