1
0
Fork 0
qmk_firmware/tmk_core/protocol/midi/bytequeue/interrupt_setting.h

36 lines
1 KiB
C
Raw Permalink Normal View History

2019-08-30 18:19:03 +00:00
// Copyright 20010 Alex Norman
// writen by Alex Norman
2015-08-20 04:42:28 +00:00
//
2019-08-30 18:19:03 +00:00
// This file is part of avr-bytequeue.
2015-08-20 04:42:28 +00:00
//
2019-08-30 18:19:03 +00:00
// avr-bytequeue is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
2015-08-20 04:42:28 +00:00
//(at your option) any later version.
//
2019-08-30 18:19:03 +00:00
// avr-bytequeue is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
2015-08-20 04:42:28 +00:00
//
2019-08-30 18:19:03 +00:00
// You should have received a copy of the GNU General Public License
// along with avr-bytequeue. If not, see <http://www.gnu.org/licenses/>.
2015-08-20 04:42:28 +00:00
#pragma once
2015-08-20 04:42:28 +00:00
#ifdef __cplusplus
extern "C" {
2019-08-30 18:19:03 +00:00
#endif
2015-08-20 04:42:28 +00:00
#include <inttypes.h>
2019-08-30 18:19:03 +00:00
// AVR specific typedef
2015-08-20 04:42:28 +00:00
typedef uint8_t interrupt_setting_t;
interrupt_setting_t store_and_clear_interrupt(void);
2019-08-30 18:19:03 +00:00
void restore_interrupt_setting(interrupt_setting_t setting);
2015-08-20 04:42:28 +00:00
#ifdef __cplusplus
}
#endif