1

以下の C 構造体を Python で実装し、以下のようにメンバーにアクセスしたいと考えています。どんな助けでも大歓迎です

typedef struct{
    unsigned int ch_state;
    unsigned int polling;
    unsigned int timeout;
    unsigned int count;
}channel_Status_t;

typedef struct{
 channel_Status_t  ch_status;
}channel_num_t

typedef struct{   
    channel_num_t SR1;
    channel_num_t SR2;
    channel_num_t LR1;
    channel_num_t LR2;
} channel_type_t;

channel_type_t Rx;
channel_type_t Tx;

Rx.SR1.ch_status.ch_state=1;
Rx.SR1.ch_status.polling=10;
Rx.SR1.ch_status.polling=20;
Rx.SR1.ch_status.count=0;

// Should be able to access data as below... 
Rx.SR2.ch_status.ch_state=1;
Rx.SR2.ch_status.polling=10;
Rx.SR2.ch_status.polling=20;
Rx.SR2.ch_status.count=0;
4

1 に答える 1