* Basically, I do stuff like this all the time; ```rust let timestamp = tick_timer.get_timestamp_ms(); if timestamp - self.last_channel_change > HOP_INTERVAL { self.last_channel_change = timestamp; // Do things. } ```