I figured out the problem, and it was an arduino one ,not an ADV7619 one.
This line:
upper_htot=upper_htot&00111111;
is incorrect and *should* be:
upper_htot=upper_htot&B00111111;
I am reading proper timings now
I figured out the problem, and it was an arduino one ,not an ADV7619 one.
This line:
upper_htot=upper_htot&00111111;
is incorrect and *should* be:
upper_htot=upper_htot&B00111111;
I am reading proper timings now