Solution
To configure cyclic timing for a CAN frame in nixnet, you set two properties on the frame object:
First, access the frame object from your database (static or dynamic).
frame = db.clusters['CAN_Cluster'].frames['Frame_1']
Then, set the cyclic timing properties as shown below. For can_timing_type use the constant values in
frame.can_timing_type = nixnet.constants.FrmCanTiming.CYCLIC_DATA
frame.can_tx_time = 0.100 # 100 ms interval
Once these properties are set, any session using this frame will transmit the frame automatically at the specified interval.