Content-Length: 301547 | pFad | http://github.com/adafruit/circuitpython/pull/9876/commits/68561fccbbfe2199fee6f45bba671809096e7ef6

D1 Fix handling of stereo audio within `audiodelays` when `freq_shift=True` by relic-se · Pull Request #9876 · adafruit/circuitpython · GitHub
Skip to content

Fix handling of stereo audio within audiodelays when freq_shift=True #9876

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
Closed
Changes from 2 commits
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
398eb45
Always update `echo_buffer_len` during `recalculate_delay` when `freq…
relic-se Dec 6, 2024
cf6086d
Fix casting error in buffer length calculation.
relic-se Dec 6, 2024
83fce94
Fix handling of echo buffer when `freq_shift=True` and `channel_count…
relic-se Dec 6, 2024
9e36143
Reset buffer if changing `freq_shift` modes.
relic-se Dec 6, 2024
76caf0c
Merge remote-tracking branch 'upstream/main' into audiodelays_stereo_…
relic-se Jan 24, 2025
f4b5a35
Merge branch 'main' into audiodelays_stereo_freq_shift_fix
relic-se Feb 5, 2025
b3afaea
implement ColoConverter for TilePaletteMapper
FoamyGuy Mar 7, 2025
2f4cd74
Use MICROPY_HW_MCU_NAME for sysname and nodename for all ports.
eightycc Mar 18, 2025
9b3731c
Remove watchdog.deinit() for 10.0.0.
eightycc Mar 19, 2025
68561fc
Merge pull request #10144 from eightycc/issue-7722
tannewt Mar 19, 2025
9b89ee8
update docstring to new name
FoamyGuy Mar 19, 2025
8afdccc
check if pins exist before using
FoamyGuy Mar 19, 2025
7c0fa46
Suspected typo: last "S" in "STM32F412xGS"
page200 Mar 19, 2025
8ef2168
Merge pull request #10150 from page200/patch-1
dhalbert Mar 19, 2025
df33271
CIRCUITPY_FULL_BUILD now controls a few more features
dhalbert Mar 20, 2025
214c2f6
Factor common_hal_os_uname into os_uname() and remove common_hal_os_u…
eightycc Mar 20, 2025
b4698a5
Merge branch 'main' into audiodelays_stereo_freq_shift_fix
relic-se Mar 20, 2025
e40b1f5
Merge pull request #10145 from eightycc/issue-9686
tannewt Mar 20, 2025
429efe8
Merge pull request #10148 from FoamyGuy/usb_deviceinfo_fix
tannewt Mar 20, 2025
a0b482c
Merge pull request #10152 from dhalbert/use-full-build-for-some-features
tannewt Mar 20, 2025
afb153e
Merge branch 'main' into tile_palette_mapper_color_converter
FoamyGuy Mar 23, 2025
9ba4104
Merge pull request #10178 from adafruit/9.2.x
dhalbert Mar 26, 2025
70fe5cd
Merge pull request #10173 from FoamyGuy/tile_palette_mapper_color_con…
tannewt Mar 27, 2025
1876c71
Convert completely to new displayio bindings; remove warnings
dhalbert Mar 28, 2025
ca063ae
Update TinyUSB and close device endpoints
tannewt Mar 28, 2025
5202806
Merge pull request #10193 from dhalbert/remove-old-displayio-bus-bind…
tannewt Mar 28, 2025
14eb89a
Merge pull request #10194 from tannewt/update_tinyusb_close_ep
dhalbert Mar 28, 2025
25216c8
Merge pull request #10195 from dhalbert/9.2.x
dhalbert Mar 28, 2025
db3a47d
Merge branch 'adafruit:main' into audiodelays_stereo_freq_shift_fix
relic-se Mar 28, 2025
232c7ff
Revert "Merge branch 'adafruit:main' into audiodelays_stereo_freq_shi…
relic-se Mar 29, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 0 additions & 19 deletions shared-bindings/watchdog/WatchDogTimer.c
Original file line number Diff line number Diff line change
Expand Up @@ -48,24 +48,6 @@ static mp_obj_t watchdog_watchdogtimer_feed(mp_obj_t self_in) {
}
static MP_DEFINE_CONST_FUN_OBJ_1(watchdog_watchdogtimer_feed_obj, watchdog_watchdogtimer_feed);

//| def deinit(self) -> None:
//| """Stop the watchdog timer.
//|
//| :raises RuntimeError: if the watchdog timer cannot be disabled on this platform.
//|
//| .. note:: This is deprecated in ``9.0.0`` and will be removed in ``10.0.0``.
//| Set watchdog `mode` to `None` instead.
//|
//| """
//| ...
//|
static mp_obj_t watchdog_watchdogtimer_deinit(mp_obj_t self_in) {
watchdog_watchdogtimer_obj_t *self = MP_OBJ_TO_PTR(self_in);
common_hal_watchdog_deinit(self);
return mp_const_none;
}
static MP_DEFINE_CONST_FUN_OBJ_1(watchdog_watchdogtimer_deinit_obj, watchdog_watchdogtimer_deinit);

//| timeout: float
//| """The maximum number of seconds that can elapse between calls
//| to `feed()`. Setting the timeout will also feed the watchdog."""
Expand Down Expand Up @@ -126,7 +108,6 @@ MP_PROPERTY_GETSET(watchdog_watchdogtimer_mode_obj,

static const mp_rom_map_elem_t watchdog_watchdogtimer_locals_dict_table[] = {
{ MP_ROM_QSTR(MP_QSTR_feed), MP_ROM_PTR(&watchdog_watchdogtimer_feed_obj) },
{ MP_ROM_QSTR(MP_QSTR_deinit), MP_ROM_PTR(&watchdog_watchdogtimer_deinit_obj) },
{ MP_ROM_QSTR(MP_QSTR_timeout), MP_ROM_PTR(&watchdog_watchdogtimer_timeout_obj) },
{ MP_ROM_QSTR(MP_QSTR_mode), MP_ROM_PTR(&watchdog_watchdogtimer_mode_obj) },
};
Expand Down
Loading








ApplySandwichStrip

pFad - (p)hone/(F)rame/(a)nonymizer/(d)eclutterfier!      Saves Data!


--- a PPN by Garber Painting Akron. With Image Size Reduction included!

Fetched URL: http://github.com/adafruit/circuitpython/pull/9876/commits/68561fccbbfe2199fee6f45bba671809096e7ef6

Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy