Skip to content

Commit 981e0b7

Browse files
committed
Add mock file avr/interrupt.h in case anything includes it
1 parent 5d905ed commit 981e0b7

File tree

2 files changed

+8
-0
lines changed

2 files changed

+8
-0
lines changed

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
99
### Added
1010
- `Logger` class to centralize CI runner script logging (in particular, indentation)
1111
- Explicit reporting of free bytes after compilation
12+
- `interrupt.h` mock
1213

1314
### Changed
1415
- `arduino_ci.rb` uses new `Logger`

cpp/arduino/avr/interrupt.h

+7
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)