diff options
author | fauxpark <fauxpark@gmail.com> | 2021-02-25 16:04:53 +1100 |
---|---|---|
committer | fauxpark <fauxpark@gmail.com> | 2021-02-25 16:04:53 +1100 |
commit | 23fd1aee00c762b1e9496795ad595325be82a956 (patch) | |
tree | 4b6a68d6015f6a730f8c15baf7103010f0f8ad56 /tmk_core/common/avr/suspend_avr.h | |
parent | 23ef327e118307d276677d30e3fda064ace6713b (diff) | |
parent | 39694d5eb0b7e48e06f9544600041fbbedfff956 (diff) |
Merge remote-tracking branch 'upstream/master' into develop
Diffstat (limited to 'tmk_core/common/avr/suspend_avr.h')
-rw-r--r-- | tmk_core/common/avr/suspend_avr.h | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/tmk_core/common/avr/suspend_avr.h b/tmk_core/common/avr/suspend_avr.h deleted file mode 100644 index 6df048f3bb..0000000000 --- a/tmk_core/common/avr/suspend_avr.h +++ /dev/null @@ -1,25 +0,0 @@ -#pragma once - -#include <stdint.h> -#include <stdbool.h> -#include <avr/sleep.h> -#include <avr/wdt.h> -#include <avr/interrupt.h> - -// clang-format off -#define wdt_intr_enable(value) \ -__asm__ __volatile__ ( \ - "in __tmp_reg__,__SREG__" "\n\t" \ - "cli" "\n\t" \ - "wdr" "\n\t" \ - "sts %0,%1" "\n\t" \ - "out __SREG__,__tmp_reg__" "\n\t" \ - "sts %0,%2" "\n\t" \ - : /* no outputs */ \ - : "M" (_SFR_MEM_ADDR(_WD_CONTROL_REG)), \ - "r" (_BV(_WD_CHANGE_BIT) | _BV(WDE)), \ - "r" ((uint8_t) ((value & 0x08 ? _WD_PS3_MASK : 0x00) | \ - _BV(WDIE) | (value & 0x07)) ) \ - : "r0" \ -) -// clang-format on |