Parcourir la source

Updated code size

Benoit Blanchon il y a 11 ans
Parent
commit
339de21f1c
1 fichiers modifiés avec 4 ajouts et 4 suppressions
  1. 4 4
      README.md

+ 4 - 4
README.md

@@ -22,14 +22,14 @@ Feature comparison
 
 | Library      | Memory allocation | Nested objects | Parser size | Encoder size  |
 | ------------ | ----------------- | -------------- | ----------- | ------------- |
-| Arduino JSON | static            | yes            | 2616 Bytes  | 686 bytes     |
+| Arduino JSON | static            | yes            | 2616 Bytes  | 628 bytes     |
 | json-arduino | dynamic           | no             | 3348 (+28%) | not supported |
-| aJson        | dynamic           | yes            | 5088 (+94%) | 4678 (+578%)  |
+| aJson        | dynamic           | yes            | 5088 (+94%) | 4678 (+640%)  |
 
-Parser size was measured with a program parsing `{"sensor":"outdoor","value":25.6}`.
+"Parser size" was measured with a program parsing `{"sensor":"outdoor","value":25.6}`.
 For each library, I wrote a program that extracts a string and a float. I subtracted the size of a program doing the same without any JSON parsing involved. [Source files are here](https://gist.github.com/bblanchon/e8ba914a7109f3642c0f).
 
-Encoder size was measured with a program generating `{"sensor":"outdoor","value":25.6}`.
+"Encoder size" was measured with a program generating `{"sensor":"outdoor","value":25.6}`.
 [Source files are here](https://gist.github.com/bblanchon/60224e9dcfeab4ddc7e9).
 
 In each case the target platform was an Arduino Duemilanove and Arduino IDE 1.0.5 was used.