Hi, Sheldon

That's exactly what you do here ...

1) you first set a constant to 1000
2) you set a variable equal to this constant
3) you output signal of the variable length ...

so, step 1) is not necessary ...


writing

Code:
Time VAR Word ; create your variable

Time = 1000     ; set it to 1000

PULSOUT pin, Time ; output your signal
is the shortest way ... using a variable.

Alain