You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
482 B
17 lines
482 B
3 years ago
|
#include <ArduinoJson.h>
|
||
|
|
||
|
static_assert(ARDUINOJSON_USE_LONG_LONG == 1, "ARDUINOJSON_USE_LONG_LONG");
|
||
|
|
||
|
static_assert(ARDUINOJSON_SLOT_OFFSET_SIZE == 2,
|
||
|
"ARDUINOJSON_SLOT_OFFSET_SIZE");
|
||
|
|
||
|
static_assert(ARDUINOJSON_LITTLE_ENDIAN == 1, "ARDUINOJSON_LITTLE_ENDIAN");
|
||
|
|
||
|
static_assert(ARDUINOJSON_USE_DOUBLE == 1, "ARDUINOJSON_USE_DOUBLE");
|
||
|
|
||
|
static_assert(sizeof(ARDUINOJSON_NAMESPACE::VariantSlot) == 16,
|
||
|
"sizeof(VariantSlot)");
|
||
|
|
||
|
void setup() {}
|
||
|
void loop() {}
|