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
Copy file name to clipboardExpand all lines: docs/1.start.md
+33Lines changed: 33 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -229,4 +229,37 @@ LP_TIMER(1000, []() {
229
229
LP_TIMER_("tmr", 100, []() {
230
230
Serial.println(millis());
231
231
});
232
+
```
233
+
234
+
### Многофайловый проект
235
+
Глобальный диспетчер задач позволяет создавать задачи в отдельных исполняемых файлах и не тащить их в main, но они всё равно будут вызываться из общего loop в main. Например
0 commit comments