explicitly specify the default Pϕ/4 prescaler

This makes no difference since this is the default.
This commit is contained in:
Lephenixnoir 2020-10-20 15:12:28 +02:00
parent 5be56fe2eb
commit 7ae42ac662
No known key found for this signature in database
GPG key ID: 1BBA026E13FC0495

View file

@ -17,7 +17,7 @@ int prof_init(void)
int timer = -1;
for(int t = 2; t >= 0 && timer == -1; t--)
{
timer = timer_setup(t, 0xffffffff, NULL);
timer = timer_setup(t | TIMER_Pphi_4, 0xffffffff, NULL);
}
if(timer == -1)
{