Setting a "standard" transmission frequency?

Quick question about coding a target interval for specific messages.

I want to remove a number of modules from the HS CAN bus in my project car - and then largely replicate their function via an M2.

One particular ID appears on the bus approx every 60ms - so I want my replicated message to do the same.

How can I do that with the Due Can library?

The (super) basic code snippet below just seems to transmit whenever there is availability on the bus and ends up flooding it.

Thanks

Joe

void loop()
{
byte i=0;
CAN_FRAME message;

message.id = 0x17E012B0;
message.rtr = 0;
message.extended = 1;
message.length = 8;
message.data.byte[0] = 0x00;
message.data.byte[1] = 0x10;
message.data.byte[2] = 0x00;
message.data.byte[3] = 0x00;
message.data.byte[4] = 0x00;
message.data.byte[5] = 0x00;
message.data.byte[6] = 0x00;
message.data.byte[7] = 0x00;

Can0.sendFrame(message)

You just need to set up a timer to make it wait 60 seconds before transmitting again. Check out the Arduino example called “Blink without Delay”