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
* Inordertowakeuptheboard, youneedtosetathresholdonhowmanychangesintheRXpin (thereceptionpinoftheUART) isnecessary. Accordingto [thedocumentation](https://docs.espressif.com/projects/esp-idf/en/latest/esp32/api-reference/system/sleep_modes.html#uart-wakeup-light-sleep-only), you will lose few characters. So the sender should take this into consideration in the protocol.
122
+
123
+
Usageisstraightforward:
124
+
125
+
```csharp
126
+
EnableWakeupByUart(WakeUpPort.COM2, 5);
127
+
StartLightSleep();
128
+
```
129
+
109
130
## Pulse Counter
110
131
111
132
PulsecounterallowstocountpulseswithouthavingtosetupaGPIOcontrollerandevents. It's a fast way to get count during a specific amount of time. This pulse counter allows as well to use 2 different pins and get a pulse count depending on their respective polarities.
0 commit comments