Skip to content

Commit

Permalink
Start of legacy support.
Browse files Browse the repository at this point in the history
  • Loading branch information
Chris--A committed Jul 24, 2016
1 parent 75e36e2 commit eef7e6f
Showing 1 changed file with 25 additions and 13 deletions.
38 changes: 25 additions & 13 deletions src/PrintEx.h
Original file line number Diff line number Diff line change
Expand Up @@ -21,19 +21,31 @@
********************************************************************************/

#define PRINTEX_VERSION 10110

#include "lib/MemoryPrinter.h"
#include "lib/StreamExtension.h"

#include "tools/BufferedPrinter.h"
#include "tools/DualPrinter.h"
#include "tools/Base64Encoder/Base64Encoder.h"
#include "tools/URIEncoder/URIEncoder.h"
#include "tools/CRCStream/CRCStream.h"
#include "tools/RxTxCounter.h"
#include "tools/NullStream.h"
#include "tools/PrintAdapter.h"
#define PRINTEX_VERSION 10200

#if ARDUINO < 153
#include "MemoryPrinter.h"
#include "StreamExtension.h"
#include "utility/BufferedPrinter.h"
#include "utility/DualPrinter.h"
#include "utility/Base64Encoder.h"
#include "utility/URIEncoder.h"
#include "utility/CRCStream.h"
#include "utility/RxTxCounter.h"
#include "utility/NullStream.h"
#include "utility/PrintAdapter.h"
#else
#include "lib/MemoryPrinter.h"
#include "lib/StreamExtension.h"
#include "tools/BufferedPrinter.h"
#include "tools/DualPrinter.h"
#include "tools/Base64Encoder/Base64Encoder.h"
#include "tools/URIEncoder/URIEncoder.h"
#include "tools/CRCStream/CRCStream.h"
#include "tools/RxTxCounter.h"
#include "tools/NullStream.h"
#include "tools/PrintAdapter.h"
#endif

#ifdef ISCPP11
template<
Expand Down

0 comments on commit eef7e6f

Please sign in to comment.