Reduce available variable count on STM32VL - we were too low on RAM

This commit is contained in:
Gordon Williams 2018-07-02 08:54:23 +01:00
parent 554860c6ee
commit e77083d8e4
2 changed files with 2 additions and 1 deletions

View File

@ -30,6 +30,7 @@
Enable E.setTimeZone on boards with very little flash memory
Lower saved code area to 2k on micro:bit (from 3)
Remove RGB colour handling in setColor on devices with low flash
Reduce available variable count on STM32VL - we were too low on RAM
1v99 : Increase jslMatch error buffer size to handle "UNFINISHED TEMPLATE LITERAL" string (#1426)
nRF5x: Make FlashWrite cope with flash writes > 4k

View File

@ -17,7 +17,7 @@ import pinutils;
info = {
'name' : "STM32 VL Discovery",
'link' : [ "http://www.st.com/stm32-discovery" ],
'variables' : 500,
'variables' : 400,
'binary_name' : 'espruino_%v_stm32vldiscovery.bin',
'build' : {
'optimizeflags' : '-Os',