Please name candidates for a possible BLACKLIST.json entries #6241
Replies: 1 comment
-
Posted at 2019-05-20 by @gfwilliams The Afaik Dropping Graphics would be a big one if it's not being used. Posted at 2019-05-20 by @MaBecker
Good point - thanks Posted at 2019-05-20 by @MaBecker Just added Waveform to the blacklist like this {"class":"Waveform","name":"*"} compiled
and checked with
expected no return, but got about 350 lines back. Any hint what goes wrong on my site?
Posted at 2019-05-21 by @MaBecker Wow, there are still many strings that have not been moved to flash in the ESP8266 coding sections. Posted at 2019-05-22 by @MaBecker Question: Are blacklist entries get removed from firmware during ‘make’ or just disabled? Posted at 2019-05-22 by @gfwilliams I believe the blacklist entries get removed from But I wonder if you're compiling with Posted at 2019-05-22 by @MaBecker
not output for ESP8266, but there is
Yes, as Try a simple BLACKLIST.json
Result: Posted at 2019-05-22 by @MaBecker see attached file Attachments: Posted at 2019-05-22 by @gfwilliams Maybe @jumjum could provide some ideas? the You could always check out his EFEU project and see what it writes into the blacklist file. Posted at 2019-05-22 by JumJum MaBe, |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
Posted at 2019-05-19 by @MaBecker
Please add things that can be removed to get more vars and heap
This is an example form JumJum to explain how a blacklist works
exclude high math functions:
[{"class": "E","name": "FFT"}
,{"class": "E","name": "convolve"}
,{"class": "E","name": "interpolate"}
,{"class": "E","name": "interpolate2d"}
,{"class": "E","name": "variance"}
]
or peek and poke stuff
,{"class": "","name": "peek16"}
,{"class": "","name": "peek32"}
,{"class": "","name": "peek8"}
,{"class": "","name": "poke16"}
,{"class": "","name": "poke32"}
,{"class": "","name": "poke8"}
or
,{"class": "E","name": "asm"}
,{"class": "E","name": "compiledC"}
or
.......
Beta Was this translation helpful? Give feedback.
All reactions