]> git.zerfleddert.de Git - proxmark3-svn/commit
fix: 32bit tick timer based on TC0 and TC1 (#653)
authorAntiCat <contiki@anticat.ch>
Tue, 14 Aug 2018 07:24:02 +0000 (09:24 +0200)
committerpwpiwi <pwpiwi@users.noreply.github.com>
Tue, 14 Aug 2018 07:24:02 +0000 (09:24 +0200)
commit8ff31e935d19bc53dd8f27877b7450cafba4a942
treee7ecf905ba408a28ad9cffa502c72cf7a63c95d0
parent6a0915eac23a40d8ca0bdcaa5203164a7fb16e0e
fix: 32bit tick timer based on TC0 and TC1 (#653)

TC1 counts the number of TC0 overflows (carry bits).
In random conditions TC1 would return or stay at zero,
instead of counting up. This due to the behavior of the
reset signal.

SAM7S Series Datasheet, 33.5.6 Trigger:
Regardless of the trigger used, it will be taken into account
at the following active edge of the selected clock. This means
that the counter value can be read differently from zero just
after a trigger, especially when a low frequency signal is
selected as the clock.

The new code first prepares TC1 and asserts TC1 trigger and
then prepares TC0 and asserts TC0 trigger. The TC0 start-up
will reset TC1.
armsrc/util.c
armsrc/util.h
Impressum, Datenschutz