mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2025-12-15 09:33:50 +01:00
28 lines
467 B
C
28 lines
467 B
C
/*
|
|
* SPDX-FileCopyrightText: 2017 Freie Universität Berlin
|
|
* SPDX-License-Identifier: LGPL-2.1-only
|
|
*/
|
|
|
|
/**
|
|
* @ingroup cpu_arm7_common
|
|
* @ingroup drivers_periph_pm
|
|
* @{
|
|
*
|
|
* @file
|
|
* @brief ARM7 common periph/pm functions
|
|
*
|
|
* @author Kaspar Schleiser <kaspar@schleiser.de>
|
|
* @author Hauke Petersen <hauke.petersen@fu-berlin.de>
|
|
*
|
|
* @}
|
|
*/
|
|
|
|
#include "arm_cpu.h"
|
|
|
|
void pm_reboot(void)
|
|
{
|
|
while (1) {
|
|
arm_reset();
|
|
}
|
|
}
|