File tree Expand file tree Collapse file tree 1 file changed +7
-3
lines changed Expand file tree Collapse file tree 1 file changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -124,11 +124,15 @@ class AdafruitIOGroupCallback {
124
124
// /< SSL
125
125
// /< Fingerprint
126
126
127
- #define AIO_FEED_NAME_LENGTH 20 // /< Maximum length of an Adafruit IO Feed name
127
+ #define AIO_FEED_NAME_LENGTH \
128
+ 258 // /< Maximum length of an Adafruit IO Feed \
129
+ ///< Name; 128 + 1 + 128 for the group, a dot \
130
+ ///< , and actual feed name.
128
131
#define AIO_DATA_LENGTH \
129
132
45 // /< Maximum length of data sent/recieved from Adafruit IO
130
133
#define AIO_CSV_LENGTH \
131
- 150 // /< Maximum comma-separated-value length from Adafruit IO
134
+ AIO_FEED_NAME_LENGTH + 4 // /< Maximum comma-separated-value length from \
135
+ ///< Adafruit IO
132
136
133
137
/* * aio_status_t offers 13 status states */
134
138
typedef enum {
@@ -162,4 +166,4 @@ typedef enum {
162
166
163
167
} aio_time_format_t ;
164
168
165
- #endif /* ADAFRUITIO_DEFINITIONS_H_ */
169
+ #endif /* ADAFRUITIO_DEFINITIONS_H_ */
You can’t perform that action at this time.
0 commit comments