Commit 85da1e4 1 parent 04a341f commit 85da1e4 Copy full SHA for 85da1e4
File tree 2 files changed +3
-3
lines changed
2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -63,11 +63,9 @@ typedef enum {
63
63
64
64
#if defined(ARDUINO_ARCH_AVR)
65
65
#include " DMXSerial_avr.h"
66
- #include < avr/interrupt.h>
67
66
68
67
#elif defined(ARDUINO_ARCH_MEGAAVR)
69
68
#include " DMXSerial_megaavr.h"
70
- #include " avr/io.h"
71
69
72
70
#endif
73
71
@@ -242,6 +240,7 @@ bool DMXSerialClass::dataUpdated()
242
240
return (_dmxUpdated);
243
241
}
244
242
243
+
245
244
// reset DMX data update flag.
246
245
void DMXSerialClass::resetUpdated ()
247
246
{
Original file line number Diff line number Diff line change 30
30
// 29.10.2017 documentation.
31
31
//
32
32
// 07.02.2020 Refactored to support multiple hardware layers.
33
+ // 26.02.2020 Version 1.5.0
33
34
// - - - - -
34
35
35
36
#ifndef DmxSerial_h
43
44
44
45
#define DMXMODEPIN 2 // /< Arduino pin 2 for controlling the data direction is the default value.
45
46
#define DmxModeOut HIGH // /< set the level to HIGH for outgoing data direction
46
- #define DmxModeIn LOW // /< set the level to LOW for incomming data direction
47
+ #define DmxModeIn LOW // /< set the level to LOW for incoming data direction
47
48
48
49
#define DMXPROBE_RECV_MAX 50 // standard maximum of waiting for a DMX packet in DMXPROBE mode.
49
50
You can’t perform that action at this time.
0 commit comments