diff options
| author | Lucian Copeland <hierophect@gmail.com> | 2020-08-18 11:42:06 -0400 |
|---|---|---|
| committer | Lucian Copeland <hierophect@gmail.com> | 2020-08-18 11:42:06 -0400 |
| commit | da75445cd58d0fbf72c6b323b1b0bd53197f9cf3 (patch) | |
| tree | 8cea954b6bc6ce3a2949f57c24d3459a6ddfcd51 /ports/cxd56 | |
| parent | d0d6a951da9ef39f68a0d118db6c22c7e4ec9b2b (diff) | |
Style changes, reposition runtime errors
Diffstat (limited to 'ports/cxd56')
| -rw-r--r-- | ports/cxd56/common-hal/pulseio/PulseOut.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ports/cxd56/common-hal/pulseio/PulseOut.c b/ports/cxd56/common-hal/pulseio/PulseOut.c index 2851a0465..08081020f 100644 --- a/ports/cxd56/common-hal/pulseio/PulseOut.c +++ b/ports/cxd56/common-hal/pulseio/PulseOut.c @@ -65,7 +65,7 @@ void common_hal_pulseio_pulseout_construct(pulseio_pulseout_obj_t* self, uint16_t duty_cycle) { if (!carrier || pin || frequency) { mp_raise_NotImplementedError(translate("Port does not accept pins or frequency. \ - Construct and pass a PWM Carrier instead")); + Construct and pass a PWMOut Carrier instead")); } if (pulse_fd < 0) { |
