modify things

This commit is contained in:
Thomas Farstrike
2025-05-20 16:41:51 +02:00
parent 479c50e501
commit e38e57d00a
4 changed files with 18 additions and 5 deletions
+8
View File
@@ -656,3 +656,11 @@ buf.data[1000000] = 0xFF # Write way beyond buffer size
# this works to crash it:
from machine import mem32
mem32[0] = 0xDEADBEEF
# testing stack size: recursion depth * 256
#normally I get ~16KB
import _thread
_thread.stack_size(0)