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
Signed by: Lephenixnoir
GPG Key ID: 1BBA026E13FC0495
1 changed files with 1 additions and 1 deletions

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)
{