2021-10-18 16:43:47 +02:00
|
|
|
#include <ArduinoJson.h>
|
|
|
|
|
2023-04-12 11:24:49 +02:00
|
|
|
static_assert(ARDUINOJSON_ENABLE_PROGMEM == 1, "ARDUINOJSON_ENABLE_PROGMEM");
|
|
|
|
|
2021-10-18 16:43:47 +02:00
|
|
|
static_assert(ARDUINOJSON_USE_LONG_LONG == 0, "ARDUINOJSON_USE_LONG_LONG");
|
|
|
|
|
2023-06-14 11:57:31 +02:00
|
|
|
static_assert(ARDUINOJSON_SLOT_ID_SIZE == 1, "ARDUINOJSON_SLOT_ID_SIZE");
|
2021-10-18 16:43:47 +02:00
|
|
|
|
|
|
|
static_assert(ARDUINOJSON_LITTLE_ENDIAN == 1, "ARDUINOJSON_LITTLE_ENDIAN");
|
|
|
|
|
2024-08-27 14:53:28 +02:00
|
|
|
static_assert(ARDUINOJSON_USE_DOUBLE == 0, "ARDUINOJSON_USE_DOUBLE");
|
2021-10-18 16:43:47 +02:00
|
|
|
|
2024-09-10 18:26:58 +02:00
|
|
|
static_assert(ArduinoJson::detail::ResourceManager::slotSize == 6, "slot size");
|
2021-10-18 16:43:47 +02:00
|
|
|
|
|
|
|
void setup() {}
|
|
|
|
void loop() {}
|