We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fb2d1c4 commit 8cfb476Copy full SHA for 8cfb476
1 file changed
firmware/controllers/lua/lua.cpp
@@ -407,10 +407,10 @@ void startLua() {
407
// definitely should NOT have this on Proteus
408
// on Hellen a bit of open question what's the best track
409
if (isStm32F42x()) {
410
- // This is safe to use base and end as we define ram3 for all F4 chips
+ // This is safe to use section base and end as we define ram3 for all F4 chips
411
extern char __ram3_base__[];
412
extern char __ram3_end__[];
413
- userHeap.reinit(__ram3_base__, __ram3_base__ - __ram3_end__);
+ userHeap.reinit(__ram3_base__, __ram3_end__ - __ram3_base__);
414
}
415
#endif // !EFI_IS_F42x
416
#endif // STM32F4
0 commit comments