1
0
mirror of https://github.com/thooge/esp32-nmea2000-obp60.git synced 2025-12-16 07:23:07 +01:00

Reduce stack size for OBP task from 25kB to 10kB, add custom page keel position, change formatter

This commit is contained in:
norbert-walter
2022-03-19 19:21:35 +01:00
parent d43974ac1a
commit 51f8bfc0ee
4 changed files with 52 additions and 40 deletions

View File

@@ -20,7 +20,7 @@ DECLARE_INITFUNCTION(OBP60Init);
// OBP60 Task
void OBP60Task(GwApi *param);
DECLARE_USERTASK_PARAM(OBP60Task, 25000) // Need 25k RAM as stack size
DECLARE_USERTASK_PARAM(OBP60Task, 10000) // Need 10k RAM as stack size
DECLARE_CAPABILITY(obp60,true);
#endif