-
We will use an RP2040 to generate PWM signals for the ESC’s to run the thrusters. We need some way to communicate with the RP2040, sending it the desired PWM duty cycles for each thruster (total 8).
…
-
Is it possible, to use Float-Values for the duty cycle?
Thank you!
-
Thanks for sharing this, it was really helpful to get my project underway.
With regards to your code:
if (rxId == 0X2D1) {
DPO1out = rxBuf[0];
DPO2out = rxBuf[4];
}
I found th…
-
https://github.com/SRA-AVITRA/avitra_esp/blob/488bf4fef609df3e0a4299dc2b68873eaa7df24c/test/rpm_tuning/main/motor.c#L20
Do you really need `+=` ? Can't the operator be only pure `=`?
-
According to the manual, "The rotator motors are rated for five minutes intermittent duty. However, they be brought to rest for at least 15 minutes afterwards.". I assume they mean less than 5 mins of…
hspil updated
2 years ago
-
Pulsed repetition protocols (e.g., Zeng et al., 2022) are a major simulation scenario, but how to run heating simulations is currently not very intuitive, partly due to variable naming and their assoc…
-
I'm trying to use pwm() on TC4 (D6 on the Seeduino Xiao), but the duty cycle is being calculated incorrectly in wiring_pwm.cpp line 271:
` duty = mapResolution(duty, 10, 16);
`
For samd51 …
-
The minimum advertising interval is 20ms. I want to use a smaller interval time. Is there any way to support for high duty cycle connected direct advertising?
-
Floating point math is used in sx127x phy driver. This will cause issues on some companion chips ([for example esp32](https://github.com/esp-rs/esp-hal/issues/2050)).
* [x] lora-phy - [ sx1276 freq…
plaes updated
1 month ago
-
Hi again,
For a project I am working on, I want to use a square waveform with configurable duty cycle.
The current version only has fixed (50%) duty cycle and I want to make this configurable.
…