input:
1. base interval (for example: 100ms)
2. pattern array (for example: 2, 2, 4,
output:
clock "tick" multiplicating base interval according to pattern array - for ex. 200ms from start, then next 200ms, then 400ms, then 800ms ...
easy.
problem is to synchronize 2 patches like that and I dont know why.
for example:
array1 is 2,2,4,8
array2 is 2,2,2,2,2,2,2,2
sum of both = 16 so both clocks should synchronise after 1600ms ...BUT they never do
longer array takes more time. I think its a events processing time ...
HOW to make it in proper way?
