-
Notifications
You must be signed in to change notification settings - Fork 0
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
display refresh causes static sounds #3
Comments
hihi @FoamyGuy - i'm trying to test this with a max98357a i2s dac but i keep hitting attribute errors for the display. i've tried 9.2.5 and 9.2.6 on both rev a and rev b fruit jams. is there a different build out there?
tried commenting out
do you have that dac to see if the same behavior occurs? i'm leaning towards it being an i2s issue since this library only takes care of configuration of the dac and then any audio playback is handled by the core |
i was able to use picodvi to init the display:
and can recreate the issue with the max i2s DAC too. i notice the difference between setting the TileGrid number from 2 to 5. i tried having the wav file on the sdcard to see if that made a difference but it was the same. |
@BlitzCityDIY Attribute error on the Display stuff I think is when it does not find a display on The other thing that could factor in is the display size. I've noticed that the display I'm using doesn't seem to support the new default display configuration. I've added |
oh do display settings need to be in settings.toml now? |
Only certain devices support it I think, it's pretty new I believe. The Metro RP2350 / Fruit Jam are the only ones I know of that do for sure. It's documented here: https://docs.circuitpython.org/en/latest/docs/environment.html#circuitpy-display-width-circuitpy-display-height-and-circuitpy-display-color-depth-rp2350-boards-with-dvi-or-hstx-connector It's quite convenient for my situation where the default resolution of CircuitPython isn't supported by the display it's plugged in to. |
This gets considerably better using WAV files with lower sample rate and bit_depth. I re-exported StreetChicken.wav at 8k sample rate and 8 bit depth and it is able to run cleanly to my ear with the animations from this reproducer. The fruit jam boot jingle + animation is still a bit too much for it to handle though. It's a lot better sounding than it was, but still with noticeable extra static. I attempted overclocking the CPU but I either did that wrong, or there is something about the Fruit Jam making that not work the same. I tried |
This might ultimately be a displayio/core issue, or some combination of those and audiobusio rather than something specific to this library, but this is where I've noticed first it and created a reproducer.
Refreshing the display seems to cause static if it's done during the
while audio.playing
loop. This code illustrates the issue:It uses this bmp: https://github.com/FoamyGuy/Adafruit_CircuitPython_FruitJam_Animation/blob/main/f_spritesheet.bmp
And this wav file: https://cdn-learn.adafruit.com/assets/assets/000/057/463/original/StreetChicken.wav?1531255658
The amount of static and interference seems correlated to how many pixels on the display need updated. If all of the code making visually changes is commented out the sound plays clearly. If the number of TileGrids is lowered by using something smaller than 5 in
for i in range(5):
the interference lessens, I don't notice any issues with 1 or 2 TileGrids, I can start to hear some with 3, and by 4 and 5 the interference is very apparent.Testing performed on:
With the version of the library from #2 at commit 08a9a85
The text was updated successfully, but these errors were encountered: