Fix typos in comments for the AT91SAM7S port (#695)

Co-authored-by: RichardBarry <3073890+RichardBarry@users.noreply.github.com>
This commit is contained in:
Evgeny Ermakov 2023-06-26 18:13:10 +00:00 committed by GitHub
parent 788f8cfd76
commit 891dcdf80a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View file

@ -204,7 +204,7 @@ AT91PS_PITC pxPIT = AT91C_BASE_PITC;
/* Configure the PIT period. */
pxPIT->PITC_PIMR = portPIT_ENABLE | portPIT_INT_ENABLE | portPIT_COUNTER_VALUE;
/* Enable the interrupt. Global interrupts are disables at this point so
/* Enable the interrupt. Global interrupts are disabled at this point so
this is safe. */
AT91C_BASE_AIC->AIC_IECR = 0x1 << AT91C_ID_SYS;
}

View file

@ -218,7 +218,7 @@ AT91PS_PITC pxPIT = AT91C_BASE_PITC;
/* Configure the PIT period. */
pxPIT->PITC_PIMR = portPIT_ENABLE | portPIT_INT_ENABLE | portPIT_COUNTER_VALUE;
/* Enable the interrupt. Global interrupts are disables at this point so
/* Enable the interrupt. Global interrupts are disabled at this point so
this is safe. */
AT91F_AIC_EnableIt( AT91C_BASE_AIC, AT91C_ID_SYS );
}