diff options
| author | Scott Shawcroft <scott@tannewt.org> | 2019-07-29 17:45:06 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-07-29 17:45:06 -0700 |
| commit | 3b3a7bbd064c5722946f09d5a7bfa90d7eee9b52 (patch) | |
| tree | d31f6cb2f55e599bc42625c1859df85c789df4e2 /shared-bindings | |
| parent | 3961014a9e3d9b3698a686838c3fc1b5530a148b (diff) | |
Update pwmaudioio module for PWMAudioOut
Diffstat (limited to 'shared-bindings')
| -rw-r--r-- | shared-bindings/audiopwmio/__init__.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/shared-bindings/audiopwmio/__init__.c b/shared-bindings/audiopwmio/__init__.c index aa41b0d4b..8a2b202b3 100644 --- a/shared-bindings/audiopwmio/__init__.c +++ b/shared-bindings/audiopwmio/__init__.c @@ -47,7 +47,7 @@ //| .. toctree:: //| :maxdepth: 3 //| -//| AudioOut +//| PWMAudioOut //| //| All classes change hardware state and should be deinitialized when they //| are no longer needed if the program continues after use. To do so, either @@ -60,7 +60,7 @@ STATIC const mp_rom_map_elem_t audiopwmio_module_globals_table[] = { { MP_ROM_QSTR(MP_QSTR___name__), MP_ROM_QSTR(MP_QSTR_audiopwmio) }, - { MP_ROM_QSTR(MP_QSTR_AudioOut), MP_ROM_PTR(&audiopwmio_pwmaudioout_type) }, + { MP_ROM_QSTR(MP_QSTR_PWMAudioOut), MP_ROM_PTR(&audiopwmio_pwmaudioout_type) }, }; STATIC MP_DEFINE_CONST_DICT(audiopwmio_module_globals, audiopwmio_module_globals_table); |
