Skip to content

Commit 36b7fb3

Browse files
committed
fix(I3C): I3C_BUS definition in the examples
Signed-off-by: Frederic Pillon <frederic.pillon@st.com>
1 parent cdd2e27 commit 36b7fb3

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

libraries/I3C/examples/BasicBegin/BasicBegin.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
// Choose the bus instance available on your board.
44

5-
#define I3C_BUS = I3C1Bus;
5+
#define I3C_BUS I3C1Bus
66

77
void setup() {
88
Serial.begin(115200);

libraries/I3C/examples/DeviceReady/DeviceReady.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#include <I3C.h>
22

3-
#define I3C_BUS = I3C1Bus;
3+
#define I3C_BUS I3C1Bus
44

55

66
void setup() {

0 commit comments

Comments
 (0)