You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/// Structure representing a register data pair of offset and value.typedefstructPktRegDataPair
{
uint32_t offset; ///< The register offset.uint32_t value; ///< The register value.
} PktRegDataPair;
/// Structure representing different types of register data that can be found within a packet.typedefstructPktRegData
{
RegDataType type; ///< Register data type.uint32_t numRegs; ///< The number of register represented.union
{
struct
{
uint32_t regOffset; ///< Starting register offset.constuint32_t* pData; ///< Pointer to consecutive register values.
} immMultiData;
struct
{
const PktRegDataPair* pData; ///< Pointer to register pairs of offsets/values.
} immMultiPairs;
struct
{
uint64_t address; ///< Address of consecutive register values/pairs of offsets/values.uint32_t addrOffset; ///< Offset to an existing address. Valid only if address above is zero.struct
{
uint32_t regOffset; ///< Starting register offset.
} data;
} indirect;
};
} PktRegData;
I would like to wrap this in pybind11 in such a way that when the structure is returned to Python, only the valid member variables are present. Similarly, when loaded from Python, I need to translate it into the PktRegData structure.
I'm at a loss as to the best way to do this in pybind11. I've seen documentation for custom type casters and polymorphic type hooks, but am not sure either is best for my use case. For that matter, I'm having a tough time wrapping my head around the implementation for both!
Thank you for your help!
The text was updated successfully, but these errors were encountered:
I have a structure that looks like the following:
I would like to wrap this in pybind11 in such a way that when the structure is returned to Python, only the valid member variables are present. Similarly, when loaded from Python, I need to translate it into the PktRegData structure.
I'm at a loss as to the best way to do this in pybind11. I've seen documentation for custom type casters and polymorphic type hooks, but am not sure either is best for my use case. For that matter, I'm having a tough time wrapping my head around the implementation for both!
Thank you for your help!
The text was updated successfully, but these errors were encountered: