Font updates, i2s mod, add extra space in radiotext ticker

This commit is contained in:
Sjef Verhoeven PE5PVB
2024-02-18 00:40:50 +01:00
parent c1a2a4557e
commit b8b54193d6
5 changed files with 8478 additions and 8507 deletions
+2
View File
@@ -706,10 +706,12 @@ void setup() {
radio.setVolume(VolSet);
radio.setOffset(LevelOffset);
radio.setAMOffset(AMLevelOffset);
if (band > BAND_GAP) {
radio.setAMCoChannel(amcodect, amcodectcount);
radio.setAMAttenuation(amrfagc);
}
radio.setStereoLevel(StereoLevel);
radio.setHighCutLevel(HighCutLevel);
radio.setHighCutOffset(HighCutOffset);
+3981 -4045
View File
File diff suppressed because it is too large Load Diff
+4489 -4458
View File
File diff suppressed because it is too large Load Diff
+3 -1
View File
@@ -31,7 +31,9 @@ const unsigned char tuner_init_tab[] PROGMEM = {
7, 0x20, 0x4B, 0x01, 0x00, 0x00, 0x0F, 0xA0,
5, 0x20, 0x56, 0x01, 0x03, 0x84,
7, 0x30, 0x15, 0x01, 0x00, 0x80, 0x00, 0x01,
13, 0x30, 0x16, 0x01, 0x00, 0x20, 0x00, 0x01, 0x00, 0x10, 0x00, 0x00, 0x12, 0xc0
13, 0x30, 0x16, 0x01, 0x00, 0x20, 0x00, 0x01, 0x00, 0x10, 0x00, 0x00, 0x12, 0xc0,
13, 0x30, 0x16, 0x01, 0x00, 0x21, 0x00, 0x02, 0x00, 0x20, 0x01, 0x00, 0x12, 0xC0,
7, 0x30, 0x0D, 0x01, 0x00, 0x11, 0x00, 0xF0
};
const unsigned char tuner_init_tab4000[] PROGMEM = {
+1 -1
View File
@@ -699,7 +699,7 @@ void showRadioText() {
if (!screenmute) {
if (radio.rds.hasRT && radio.rds.stationText.length() > 0) {
if (String(radio.rds.stationText + radio.rds.stationText32).length() != Radiotextlengthold) {
RadiotextWidth = String(radio.rds.stationText + " " + radio.rds.stationText32).length() * charwidth;
RadiotextWidth = (String(radio.rds.stationText + " " + radio.rds.stationText32).length() * charwidth) + 3 * charwidth;
Radiotextlengthold = String(radio.rds.stationText + radio.rds.stationText32).length();
}
if (advancedRDS && radio.rds.stationText.length() < 20) {