Skip to content

Commit

Permalink
Merge pull request #29 from bcmi-labs/merge-main-include-files
Browse files Browse the repository at this point in the history
Move include directives from `Arduino_ThreadsafeIO.h` into `Arduino_ThreadsafeIO.h`
  • Loading branch information
aentinger committed Oct 13, 2021
2 parents 8469039 + 0769457 commit 1ce7e72
Show file tree
Hide file tree
Showing 10 changed files with 13 additions and 39 deletions.
2 changes: 1 addition & 1 deletion examples/Threadsafe_SPI/Threadsafe_SPI.ino
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* INCLUDE
**************************************************************************************/

#include <Arduino_ThreadsafeIO.h>
#include <Arduino_Threads.h>

/**************************************************************************************
* CONSTANTS
Expand Down
2 changes: 1 addition & 1 deletion examples/Threadsafe_SPI_BusIO/Threadsafe_SPI_BusIO.ino
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* INCLUDE
**************************************************************************************/

#include <Arduino_ThreadsafeIO.h>
#include <Arduino_Threads.h>

/**************************************************************************************
* CONSTANTS
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* INCLUDE
**************************************************************************************/

#include <Arduino_ThreadsafeIO.h>
#include <Arduino_Threads.h>

/**************************************************************************************
* CONSTANTS
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* INCLUDE
**************************************************************************************/

#include <Arduino_ThreadsafeIO.h>
#include <Arduino_Threads.h>

/**************************************************************************************
* CONSTANTS
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* INCLUDE
**************************************************************************************/

#include <Arduino_ThreadsafeIO.h>
#include <Arduino_Threads.h>

/**************************************************************************************
* CONSTANTS
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* INCLUDE
**************************************************************************************/

#include <Arduino_ThreadsafeIO.h>
#include <Arduino_Threads.h>

/**************************************************************************************
* CONSTANTS
Expand Down
2 changes: 1 addition & 1 deletion examples/Threadsafe_Wire/Threadsafe_Wire.ino
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* INCLUDE
**************************************************************************************/

#include <Arduino_ThreadsafeIO.h>
#include <Arduino_Threads.h>

/**************************************************************************************
* CONSTANTS
Expand Down
2 changes: 1 addition & 1 deletion examples/Threadsafe_Wire_BusIO/Threadsafe_Wire_BusIO.ino
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* INCLUDE
**************************************************************************************/

#include <Arduino_ThreadsafeIO.h>
#include <Arduino_Threads.h>

/**************************************************************************************
* CONSTANTS
Expand Down
5 changes: 5 additions & 0 deletions src/Arduino_Threads.h
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,11 @@
#include "Source.hpp"
#include "Shared.hpp"

#include "BusDevice.h"
#include "spi/SpiBusDevice.h"
#include "wire/WireBusDevice.h"
#include "serial/SerialDispatcher.h"

/**************************************************************************************
* DEFINE
**************************************************************************************/
Expand Down
31 changes: 0 additions & 31 deletions src/Arduino_ThreadsafeIO.h

This file was deleted.

0 comments on commit 1ce7e72

Please sign in to comment.