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 33b0fd5 commit e16c459Copy full SHA for e16c459
cores/rp2040/cyw43_wrappers.h
@@ -23,11 +23,15 @@
23
#include <pico/cyw43_driver.h>
24
25
extern bool __isPicoW;
26
+#ifdef __cplusplus
27
extern "C" {
- void init_cyw43_wifi();
28
- void __lockBluetooth();
29
- void __unlockBluetooth();
30
- void cyw43_pinMode(pin_size_t pin, PinMode mode);
31
- void cyw43_digitalWrite(pin_size_t pin, PinStatus val);
32
- PinStatus cyw43_digitalRead(pin_size_t pin);
+#endif
+void init_cyw43_wifi();
+void __lockBluetooth();
+void __unlockBluetooth();
+void cyw43_pinMode(pin_size_t pin, PinMode mode);
33
+void cyw43_digitalWrite(pin_size_t pin, PinStatus val);
34
+PinStatus cyw43_digitalRead(pin_size_t pin);
35
36
}
37
0 commit comments