-
Notifications
You must be signed in to change notification settings - Fork 5
Short station names not updating #9
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
Comments
Helllo @caternuson I tested this but could not repeat the issue. Adafruit CircuitPython 6.2.0 on 2021-04-05; Adafruit Feather RP2040 with rp2040
>>> import board
>>> import digitalio
>>> import adafruit_si4713
>>> si_reset = digitalio.DigitalInOut(board.D5)
>>> si4713 = adafruit_si4713.SI4713(board.I2C(), reset=si_reset, timeout_s=0.5)
>>> si4713.tx_frequency_khz = 87500
>>> si4713.tx_power = 115
>>> si4713.configure_rds(0xADAF, station=b'ocho', rds_buffer=b'solid gold yacht rock')
>>> |
@jposada202020 What are you using for receiving the RDS info? |
@caternuson mmmm, Not using not a receiver. Was trying to see where the issue was. So the only thing that I did was change the station. |
I'm trying to remember some of these details myself 😃 |
Oh dear.... Gotcha.. lets see what I can do :) |
@caternuson I will try to troubleshoot this during the weekend now that I have how to test. according to initial testing I am guessing that the buffer is not being cleared, but I have not even study a single line of code of the library.. :) |
@jposada202020 cool. it looks like you generally are recreating the issue. i also did not dig into this very far. seemed like a weird edge case and at the time needed to move on to other things. so just created this issue as a reminder, or for anyone else that might wander into it :) thanks! |
In example below, just change
station
to something with less than 8 characters.The text was updated successfully, but these errors were encountered: