-
Notifications
You must be signed in to change notification settings - Fork 0
/
interrupt.h
82 lines (70 loc) · 2.75 KB
/
interrupt.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
// Technische Richtlinie FA205
// Bibliothek: interrupt.h
// Controller: ESP32
// Version: 1.0
// erstellt am: 4.9.2023
// letzte Änderung: 4.9.2023
// Autor: Rahm
#ifndef _INTERRUPT_H_
#define _INTERRUPT_H_
#include "controller.h"
#if defined(_RISING_EDGE_TRIGGER_)
#elif defined(_FALLING_EDGE_TRIGGER_)
#elif defined(_ANY_EDGE_TRIGGER_)
#else
#define _FALLING_EDGE_TRIGGER_ //default Trigger
#endif
// externer Interrupt Pins
#if defined(_ESP32_CARRIER_BOARD_)
#define _INTERRUPT_PIN0_ 14 // ESP32-Carrier-Board
#define _INTERRUPT_PIN1_ 4
#elif defined(_ESP32_ESPRIT_BOARD_)
#define _INTERRUPT_PIN0_ 2 // ESP32-Esprit-Board
#define _INTERRUPT_PIN1_ 27
#else // default
#define _INTERRUPT_PIN0_ 14
#define _INTERRUPT_PIN1_ 4
#endif
// Funktionsprototypen für externen Interrupt0
extern void ext_interrupt_init ( void (*ip) (void));
extern void ext_interrupt_enable ( void );
extern void ext_interrupt_disable ( void );
extern void ext_interrupt_isr ( void );
// Funktionsprototypen für externen Interrupt1
extern void ext_interrupt1_init ( void (*ip) (void));
extern void ext_interrupt1_enable ( void );
extern void ext_interrupt1_disable ( void );
extern void ext_interrupt1_isr ( void );
// Funktionsprototypen für seriellen Interrupt (data received)
// @Rah: Not yet implemented !!
//extern void serial_interrupt_init ( void (*sr) (void));
//extern void serial_interrupt_enable ( void );
//extern void serial_interrupt_disable ( void );
//extern void serial_interrupt_isr ( void );
// Funktionsprototypen für timer1ms
extern void timer1ms_init ( void (*ti) (void) );
extern void timer1ms_enable ( void );
extern void timer1ms_disable ( void );
extern void timer1ms_isr ( void );
// Erweiterter Timer mit variabler Zeit: millisekunden = (16.2 ... 0.0001) ms
// Kein Bestandteil der Technischen Richtlinie FA205 !!!
// Die Funktionen werden für timer1ms benütigt.
extern void timer_ms_init ( void (*ti) (void), float millisec );
extern void timer_ms_enable ( void );
extern void timer_ms_disable ( void );
extern void timer_ms_isr ( void );
// Routinen zur Soundausgabe an PORTy,1 (Verwendet timer_ms_)
// key: Midi-Tastennummern (49 = a' = 440Hz Kammerton)
// 1 = ,,A = 27,5Hz
// bis 88 = a''''' = 4186,01Hz
// duration: Tondauer in ms
// silence: Ruhe nach Ton in ms
// Änderung des Soundports hier möglich:
#define TON_PORT PORTy
#define TON_BIT 1
extern void sound_init(void);
extern void play_note(uint8_t key, uint16_t duration, uint16_t silence);
// frequenz: Tonfrequenz in Hz
extern void note_on(float frequenz);
extern void note_off(void);
#endif