We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 763846a commit 8ae69a3Copy full SHA for 8ae69a3
cores/rp2040/main.cpp
@@ -25,8 +25,7 @@
25
RP2040 rp2040;
26
27
volatile bool _MFIFO::_otherIdled = false;
28
-
29
-auto_init_mutex(_pioMutex);
+mutex_t _pioMutex;
30
31
32
extern void setup();
@@ -58,6 +57,7 @@ extern "C" int main() {
58
57
set_sys_clock_khz(F_CPU / 1000, true);
59
#endif
60
+ mutex_init(&_pioMutex);
61
initVariant();
62
63
#ifndef DISABLE_USB_SERIAL
keywords.txt
@@ -9,6 +9,8 @@
9
#######################################
10
# Methods and Functions (KEYWORD2)
11
12
+setup1 KEYWORD2
13
+loop2 KEYWORD2
14
analogWriteFreq KEYWORD2
15
analogWriteRange KEYWORD2
16
analogWriteResolution KEYWORD2
0 commit comments