No, it can be done (dependent on your OS) but you might not want to use the tm() on a state machine since it isn't very accurate especially if your event freq is close to your System Timer (tick) freq.
http://publib.boulder.ibm.com/infocenter/rhaphlp/v7r5/topic/com.ibm.rhapsody.designing.doc/topics/rhp_t_dm_using_timeout_triggers.html?resultof=%22%73%79%73%74%65%6d%22%20%22%74%69%6d%65%72%22%20You can also use OXFTDelay().
A potential problem would be that such a frequent tick takes considerable processing overhead with frequent context switching. I have used a 1ms tick but I wasn't generating an event on every tick.
An event is queued so you won't have a lot of time left to do anything else.