Hello Scott,

Scott>>I am sending data out over the GPRS network to a webserver. One minute is the minimum for the timer! I would like to be able to increment trigger every time my loop reaches 60000 with trigger = trigger + 1. My thought is that I can set "if (trigger == X)" trigger with X = 1, 2 and so on... depending on the cellular sevice provided or customers request.<<

Use Melanies Code, Unless you *must* use a interupt. Melanies code will give you 1 minute delay, it is much shorter.

Or you can use a another kind of loop:

Loop:
Pause 60000
Gosub A2D
Goto Loop

If you use a interupt, this is a poor way how to do it. PBP will not call the interupt until the Pause is over with. Unless you use a assembly interupt.

Dwayne