You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The file inc/defconf.inc has two defines for the background data stack size:
BG_STACKSIZE = 32 ; Default size in bytes of data stack for background tasks
BSPPSIZE = 0 ; BG task data stack size (bytes) for memory calculation
BG_STACKSIZE is not used effectively in forth.asm. Both the interrupt datastack and the background data stack grow down from $350 ( for a STM8Sx03 ).
Maybe BG_STACKSIZE is redundant and can be removed while BSPPSIZE is set to 32.
Or did I mis something here?
The text was updated successfully, but these errors were encountered:
This happened when I factored out the BG code in #377. It was still OK until the 2.2.26 release. The first release that contained this bug was 2.2.27.pre1. 2.2.27 was released 9/Mar/2021 (today that's a month).
The file inc/defconf.inc has two defines for the background data stack size:
BG_STACKSIZE = 32 ; Default size in bytes of data stack for background tasks
BSPPSIZE = 0 ; BG task data stack size (bytes) for memory calculation
BG_STACKSIZE is not used effectively in forth.asm. Both the interrupt datastack and the background data stack grow down from $350 ( for a STM8Sx03 ).
Maybe BG_STACKSIZE is redundant and can be removed while BSPPSIZE is set to 32.
Or did I mis something here?
The text was updated successfully, but these errors were encountered: