Merge pull request #159 from brentru/fix-fallthrough-error
Fix ESP8266 fallthrough patch causing memory error, add updated ssl cert
This commit is contained in:
commit
848e3eafd3
3 changed files with 3 additions and 3 deletions
|
|
@ -1,5 +1,5 @@
|
|||
name=Adafruit IO Arduino
|
||||
version=4.2.1
|
||||
version=4.2.2
|
||||
author=Adafruit
|
||||
maintainer=Adafruit <adafruitio@adafruit.com>
|
||||
sentence=Arduino library to access Adafruit IO.
|
||||
|
|
|
|||
|
|
@ -873,7 +873,7 @@ char **parse_csv(const char *line) {
|
|||
continue;
|
||||
case '\0':
|
||||
fEnd = 1;
|
||||
continue;
|
||||
break;
|
||||
case ',':
|
||||
*tptr = '\0';
|
||||
*bptr = strdup(tmp);
|
||||
|
|
|
|||
|
|
@ -119,7 +119,7 @@ public:
|
|||
// echo | openssl s_client -connect io.adafruit.com:443 | openssl x509
|
||||
// -fingerprint -noout
|
||||
#define AIO_SSL_FINGERPRINT \
|
||||
"59 3C 48 0A B1 8B 39 4E 0D 58 50 47 9A 13 55 60 CC A0 1D AF" ///< Latest
|
||||
"18 C0 C2 3D BE DD 81 37 73 40 E7 E4 36 61 CB 0A DF 96 AD 25" ///< Latest
|
||||
///< Adafruit IO
|
||||
///< SSL
|
||||
///< Fingerprint
|
||||
|
|
|
|||
Loading…
Reference in a new issue