We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d24e126 commit e29b91dCopy full SHA for e29b91d
CHANGELOG.md
@@ -10,6 +10,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
10
- Add util/atomic.h
11
- `Logger` class to centralize CI runner script logging (in particular, indentation)
12
- Explicit reporting of free bytes after compilation
13
+- `interrupt.h` mock
14
15
### Changed
16
- `arduino_ci.rb` uses new `Logger`
cpp/arduino/avr/interrupt.h
@@ -0,0 +1,7 @@
1
+#pragma once
2
+
3
+#define _VECTOR(N) __vector_ ## N
4
+#define SIGNAL ( vector )
5
6
+void cli() {};
7
+void sei() {};
0 commit comments