File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
ports/atmel-samd/common-hal/pulseio Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -323,9 +323,9 @@ void common_hal_pulseio_pwmout_deinit(pulseio_pwmout_obj_t* self) {
323
323
}
324
324
325
325
extern void common_hal_pulseio_pwmout_set_duty_cycle (pulseio_pwmout_obj_t * self , uint16_t duty ) {
326
- // Store the unadjusted duty cycle. It turns out the the process of adjusting and calucating
326
+ // Store the unadjusted duty cycle. It turns out the the process of adjusting and calculating
327
327
// the duty cycle here and reading it back is lossy - the value will decay over time.
328
- // Track it here so that if frequency is changed we can use this value to recalcuate the
328
+ // Track it here so that if frequency is changed we can use this value to recalculate the
329
329
// proper duty cycle.
330
330
// See https://github.com/adafruit/circuitpython/issues/2086 for more details
331
331
self -> duty_cycle = duty ;
You can’t perform that action at this time.
0 commit comments