Skip to content

Commit e29b91d

Browse files
committed
Add mock file avr/interrupt.h in case anything includes it
1 parent d24e126 commit e29b91d

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
@@ -10,6 +10,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
1010
- Add util/atomic.h
1111
- `Logger` class to centralize CI runner script logging (in particular, indentation)
1212
- Explicit reporting of free bytes after compilation
13+
- `interrupt.h` mock
1314

1415
### Changed
1516
- `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)