Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
rufform
reform
Commits
35e1ace1
Commit
35e1ace1
authored
Sep 07, 2021
by
minute
Browse files
Merge branch 'powersave' into 'master'
Fixed WDT timeout to actually be 1s (instead of 2s) See merge request
!18
parents
0ce90046
9afe5089
Changes
1
Hide whitespace changes
Inline
Side-by-side
reform2-keyboard-fw/Keyboard.c
View file @
35e1ace1
...
...
@@ -855,7 +855,7 @@ void EnterPowerOff(void)
do
{
wdt_reset
();
WDTCSR
=
(
1
<<
WDCE
)
|
(
1
<<
WDE
);
// Enable writes to watchdog
WDTCSR
=
(
1
<<
WDIE
)
|
(
1
<<
WDE
)
|
(
1
<<
WDP2
)
|
(
1
<<
WDP1
)
|
(
1
<<
WDP0
)
;
// Interrupt mode, 1s timeout
WDTCSR
=
(
1
<<
WDIE
)
|
(
1
<<
WDE
)
|
(
1
<<
WDP2
)
|
(
1
<<
WDP1
);
// Interrupt mode, 1s timeout
// Enter Power-save mode
set_sleep_mode
(
SLEEP_MODE_PWR_DOWN
);
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment