X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=common%2Fsuspend.h;h=9b76f280d1f182f9c649fd2df07731fb70b3b2cd;hb=e81c70149ecf73256f8bb7d77cefc07f2b91d2be;hp=1c1e41ac3e2e57fa42f660e5e587295584656c65;hpb=ee70fe59ee8ebc6dcbf55171b1a2dd72e1744ae6;p=tmk_firmware.git diff --git a/common/suspend.h b/common/suspend.h index 1c1e41a..9b76f28 100644 --- a/common/suspend.h +++ b/common/suspend.h @@ -3,26 +3,6 @@ #include #include -#include -#include -#include - - -#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" \ -) void suspend_power_down(void);