From 10fdb42cc66727381973cd1cf7df6c5597681fae Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Beno=C3=AEt=20Blanchon?= Date: Sun, 13 Nov 2016 20:46:21 +0100 Subject: [PATCH] Updated FAQ (markdown) --- FAQ.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/FAQ.md b/FAQ.md index 3e8934c..2bb9c09 100644 --- a/FAQ.md +++ b/FAQ.md @@ -126,7 +126,7 @@ For the example above, it would be: const int BUFFER_SIZE = JSON_OBJECT_SIZE(3) + JSON_ARRAY_SIZE(2); StaticJsonBuffer jsonBuffer; -You can use the [JsonBuffer size calculator](https://rawgit.com/bblanchon/ArduinoJson/master/scripts/buffer-size-calculator.html) to get the values for common platforms. +You can use the [JsonBuffer size calculator](https://bblanchon.github.io/ArduinoJson/) to get the values for common platforms. In the second case, let's say you dynamically generate a JSON object tree of a random complexity so you can't put a limit based on that. But on the other hand, you don't want your program to crash because the object tree doesn't fit in memory. The solution here is to determine how much memory is available, or in other words how much memory you can afford for the JSON object tree. @@ -148,7 +148,7 @@ See issues [#243](https://github.com/bblanchon/ArduinoJson/issues/243) and [#302 | Weather Underground (one location) | 882 | 1424 | 2816 | 2912 | | Forecast.io | 13442 | 21588 | 42648 | 44232 | -Theses results were generated with the [JsonBuffer size calculator](https://rawgit.com/bblanchon/ArduinoJson/master/scripts/buffer-size-calculator.html). +Theses results were generated with the [JsonBuffer size calculator](https://bblanchon.github.io/ArduinoJson/). ### I found a memory leak in the library! @@ -345,7 +345,7 @@ See also: * [What are the differences between StaticJsonBuffer and DynamicJsonBuffer?](#what-are-the-differences-between-staticjsonbuffer-and-dynamicjsonbuffer) * [How to determine the buffer size?](#how-to-determine-the-buffer-size) -* [JsonBuffer size calculator](https://rawgit.com/bblanchon/ArduinoJson/master/scripts/buffer-size-calculator.html) +* [JsonBuffer size calculator](https://bblanchon.github.io/ArduinoJson/) * Issues [#360](https://github.com/bblanchon/ArduinoJson/issues/360), [#372](https://github.com/bblanchon/ArduinoJson/issues/372), [#374](https://github.com/bblanchon/ArduinoJson/issues/374) and [#380](https://github.com/bblanchon/ArduinoJson/issues/380)