K8055 Pulsing Injector

Hi all

Could somebody tell me if its possible to pulse a fuel injector for 8ms on, 7ms off, for a total of 1 sec?

if so how would i do it?

any help appreciated

Thanks

This is not possible. The sampling interval of the K8055 is 10ms.

i suppose 10ms will do then, how would i go about doing that

You can use in a loop these two instructions:
SetDigitalChannel(1);
ClearDigitalChannel(1);

The loop period will be about 20ms.