tests: kernel: Fixed tickless test for Arduino Due.
Arduino Due now uses ASF. The timestamps.c file was still using old register definitions. Signed-off-by: Justin Watson <jwatson5@gmail.com>
This commit is contained in:
parent
2b13dde488
commit
44f09663f9
1 changed files with 2 additions and 2 deletions
|
@ -258,7 +258,7 @@ void _TimestampClose(void)
|
||||||
void _TimestampOpen(void)
|
void _TimestampOpen(void)
|
||||||
{
|
{
|
||||||
/* enable RTT clock from PMC */
|
/* enable RTT clock from PMC */
|
||||||
__PMC->pcer0 = (1 << PID_RTT);
|
soc_pmc_peripheral_enable(ID_RTT);
|
||||||
|
|
||||||
/* Reset RTT and set prescaler to 1 */
|
/* Reset RTT and set prescaler to 1 */
|
||||||
_TIMESTAMP_MODE = (1 << 18) | (1 << 0);
|
_TIMESTAMP_MODE = (1 << 18) | (1 << 0);
|
||||||
|
@ -301,7 +301,7 @@ u32_t _TimestampRead(void)
|
||||||
void _TimestampClose(void)
|
void _TimestampClose(void)
|
||||||
{
|
{
|
||||||
/* disable RTT clock from PMC */
|
/* disable RTT clock from PMC */
|
||||||
__PMC->pcdr0 = (1 << PID_RTT);
|
soc_pmc_peripheral_disable(ID_RTT);
|
||||||
}
|
}
|
||||||
|
|
||||||
#else
|
#else
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue