Skip to content

Commit

Permalink
Add scrambling fields to LBandConfig.
Browse files Browse the repository at this point in the history
  • Loading branch information
axlan committed Nov 14, 2023
1 parent 7e6c67c commit 1f204e6
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion src/point_one/fusion_engine/messages/configuration.h
Original file line number Diff line number Diff line change
Expand Up @@ -1460,7 +1460,16 @@ struct P1_ALIGNAS(4) LBandConfig {
uint8_t reserved[2] = {0};

/** Unique word of the provider. */
uint32_t pmp_unique_word = 0;
uint64_t pmp_unique_word = 0;

/** Enable/disable the descrambler */
bool use_descrambler = false;

/** Enable/disable the prescrambling */
bool use_prescambling = false;

/** Set the initialization value for the descrambler */
uint16_t descrambler_init = 0;
};

/** @} */
Expand Down

0 comments on commit 1f204e6

Please sign in to comment.