Skip to content

Commit 9a9652d

Browse files
committed
Revert "Wire library to the 1.5 format"
This reverts commit a318576.
1 parent 258c7af commit 9a9652d

File tree

22 files changed

+293
-14
lines changed

22 files changed

+293
-14
lines changed

libraries/Wire/arch/avr/Wire.cpp renamed to hardware/arduino/avr/libraries/Wire/Wire.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,10 @@ extern "C" {
2323
#include <stdlib.h>
2424
#include <string.h>
2525
#include <inttypes.h>
26-
#include "utility/twi.h"
26+
#include "twi.h"
2727
}
2828

29-
#include "Wire_Class.h"
29+
#include "Wire.h"
3030

3131
// Initialize Class Variables //////////////////////////////////////////////////
3232

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
#######################################
2+
# Syntax Coloring Map For Wire
3+
#######################################
4+
5+
#######################################
6+
# Datatypes (KEYWORD1)
7+
#######################################
8+
9+
#######################################
10+
# Methods and Functions (KEYWORD2)
11+
#######################################
12+
13+
begin KEYWORD2
14+
beginTransmission KEYWORD2
15+
endTransmission KEYWORD2
16+
requestFrom KEYWORD2
17+
send KEYWORD2
18+
receive KEYWORD2
19+
onReceive KEYWORD2
20+
onRequest KEYWORD2
21+
22+
#######################################
23+
# Instances (KEYWORD2)
24+
#######################################
25+
26+
Wire KEYWORD2
27+
28+
#######################################
29+
# Constants (LITERAL1)
30+
#######################################
31+

0 commit comments

Comments
 (0)