add platform ifdef for subscription length limit

This commit is contained in:
Todd Treece 2016-11-20 19:56:51 -05:00
parent ceeedc2b3c
commit ae18e8a6c4
1 changed files with 5 additions and 1 deletions

View File

@ -110,7 +110,11 @@
// how much data we save in a subscription object
// eg max-subscription-payload-size
#define SUBSCRIPTIONDATALEN 20
#if defined (__AVR_ATmega32U4__) || defined(__AVR_ATmega328P__)
#define SUBSCRIPTIONDATALEN 20
#else
#define SUBSCRIPTIONDATALEN 100
#endif
class AdafruitIO_Feed; // forward decl