Skip to content

Commit 4cd6068

Browse files
committed
MAX32630: Fix sleep definitions
1 parent 57dc2a5 commit 4cd6068

File tree

1 file changed

+3
-3
lines changed
  • targets/TARGET_Maxim/TARGET_MAX32630

1 file changed

+3
-3
lines changed

targets/TARGET_Maxim/TARGET_MAX32630/sleep.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,13 +34,13 @@
3434
#include "sleep_api.h"
3535
#include "lp.h"
3636

37-
void sleep(void)
37+
void hal_sleep(void)
3838
{
3939
LP_EnterLP2();
4040
}
4141

4242
// Low-power stop mode
43-
void deepsleep(void)
43+
void hal_deepsleep(void)
4444
{
45-
sleep();
45+
hal_sleep();
4646
}

0 commit comments

Comments
 (0)