We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5d905ed commit 981e0b7Copy full SHA for 981e0b7
CHANGELOG.md
@@ -9,6 +9,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
9
### Added
10
- `Logger` class to centralize CI runner script logging (in particular, indentation)
11
- Explicit reporting of free bytes after compilation
12
+- `interrupt.h` mock
13
14
### Changed
15
- `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