Skip to content

Commit 1ce7e72

Browse files
authored
Merge pull request #29 from bcmi-labs/merge-main-include-files
Move include directives from `Arduino_ThreadsafeIO.h` into `Arduino_ThreadsafeIO.h`
2 parents 8469039 + 0769457 commit 1ce7e72

File tree

10 files changed

+13
-39
lines changed

10 files changed

+13
-39
lines changed

Diff for: examples/Threadsafe_SPI/Threadsafe_SPI.ino

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* INCLUDE
33
**************************************************************************************/
44

5-
#include <Arduino_ThreadsafeIO.h>
5+
#include <Arduino_Threads.h>
66

77
/**************************************************************************************
88
* CONSTANTS

Diff for: examples/Threadsafe_SPI_BusIO/Threadsafe_SPI_BusIO.ino

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* INCLUDE
33
**************************************************************************************/
44

5-
#include <Arduino_ThreadsafeIO.h>
5+
#include <Arduino_Threads.h>
66

77
/**************************************************************************************
88
* CONSTANTS

Diff for: examples/Threadsafe_Serial_GlobalPrefixSuffix/Threadsafe_Serial_GlobalPrefixSuffix.ino

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* INCLUDE
33
**************************************************************************************/
44

5-
#include <Arduino_ThreadsafeIO.h>
5+
#include <Arduino_Threads.h>
66

77
/**************************************************************************************
88
* CONSTANTS

Diff for: examples/Threadsafe_Serial_ProtocolWrapping/Threadsafe_Serial_ProtocolWrapping.ino

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* INCLUDE
33
**************************************************************************************/
44

5-
#include <Arduino_ThreadsafeIO.h>
5+
#include <Arduino_Threads.h>
66

77
/**************************************************************************************
88
* CONSTANTS

Diff for: examples/Threadsafe_Serial_Reader/Threadsafe_Serial_Reader.ino

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* INCLUDE
33
**************************************************************************************/
44

5-
#include <Arduino_ThreadsafeIO.h>
5+
#include <Arduino_Threads.h>
66

77
/**************************************************************************************
88
* CONSTANTS

Diff for: examples/Threadsafe_Serial_Writer/Threadsafe_Serial_Writer.ino

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* INCLUDE
33
**************************************************************************************/
44

5-
#include <Arduino_ThreadsafeIO.h>
5+
#include <Arduino_Threads.h>
66

77
/**************************************************************************************
88
* CONSTANTS

Diff for: examples/Threadsafe_Wire/Threadsafe_Wire.ino

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* INCLUDE
33
**************************************************************************************/
44

5-
#include <Arduino_ThreadsafeIO.h>
5+
#include <Arduino_Threads.h>
66

77
/**************************************************************************************
88
* CONSTANTS

Diff for: examples/Threadsafe_Wire_BusIO/Threadsafe_Wire_BusIO.ino

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* INCLUDE
33
**************************************************************************************/
44

5-
#include <Arduino_ThreadsafeIO.h>
5+
#include <Arduino_Threads.h>
66

77
/**************************************************************************************
88
* CONSTANTS

Diff for: src/Arduino_Threads.h

+5
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,11 @@
3030
#include "Source.hpp"
3131
#include "Shared.hpp"
3232

33+
#include "BusDevice.h"
34+
#include "spi/SpiBusDevice.h"
35+
#include "wire/WireBusDevice.h"
36+
#include "serial/SerialDispatcher.h"
37+
3338
/**************************************************************************************
3439
* DEFINE
3540
**************************************************************************************/

Diff for: src/Arduino_ThreadsafeIO.h

-31
This file was deleted.

0 commit comments

Comments
 (0)