lua-users home
lua-l archive

[Date Prev][Date Next][Thread Prev][Thread Next] [Date Index] [Thread Index]


>Hive Heap hive.heap@gmail.com über lists.lua.org

>29.04.2023, 02:01 (vor 1 Tag)
>...

This can be a very common problem if you use a "very well optimizing"
compiler like Keil / ARM C++ for microcontroller development.

If you want to avoid such things (especially if e. g. variables are
used as transfer locations to interrupt code), you have to be very
careful to declare variables with specifier "volatile" or to
concentrate on static variables in classes etc... .

... but this is very specific / very special, not TOO many people need
to bother about such things fortunately... .