YACWC
This commit is contained in:
@@ -0,0 +1,35 @@
|
||||
/*
|
||||
* File: interrupts.h
|
||||
* Author: thebears
|
||||
*
|
||||
* Created on December 18, 2024, 12:48 PM
|
||||
*/
|
||||
|
||||
#include <avr/io.h>
|
||||
#include <avr/interrupt.h>
|
||||
#include <avr/sleep.h>
|
||||
#include <avr/wdt.h>
|
||||
|
||||
#include "states.h"
|
||||
#ifndef INTERRUPTS_H
|
||||
#define INTERRUPTS_H
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
|
||||
|
||||
void init_pins();
|
||||
void set_up_reed_interrupt();
|
||||
// void set_debounce_timer_interrupt();
|
||||
void set_up_minute_interrupt();
|
||||
void wdt_isr_disable();
|
||||
void wdt_isr_enable();
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif /* INTERRUPTS_H */
|
||||
|
||||
Reference in New Issue
Block a user