Recent Posts

Pages: 1 ... 8 9 [10]
91
P275 FM Analyzer / Re: Problem TCP/IP control from P275 e FM Scope
« Last post by Peter Sztano on September 01, 2025, 02:52:25 pm »
Hi! I have the same problem with multiple P275E units.
Seems like the port settings are all ok:
RS232, 115200, 8, None, 1, None.
Seems like the FM scope connects to the unit, but no reply at all.
When connecting via serial cable, the FM scope works fine.
What may go wrong?
The units were working fine for months, after some time it begin to be first unreliable, and then no connection via internet.
Is it possible that the built in Lantronix lost serial functionality? Something may be to check with oscilloscope?

Best

Peter
92
Silence Detector / Help With Gmail/Email Alerts
« Last post by jasontaylor on August 26, 2025, 06:38:48 pm »
I am experiencing the error message "Socket Error #11001". And this is after I have turned on 2-factor authentication and enabled an app password specifically for Pira in my Gmail security settings. Could anyone offer any direction or another solution? Thank you.
93
P132, P164, P232(U) and P332 RDS Encoders / Re: Magic RDS 4 with P232U
« Last post by kellanphil on August 26, 2025, 09:19:14 am »
Enable and fill with text either the Radiotext 1 or Dynamic PS 1 or both. (The Dynamic PS is deprecated and should no longer be used.)

The RDS does not carry information about text layout or method of showing so 'one line scrolling text' is indefinite. Try the parameters until you're satisfied with the result on your receiver.
Thank you very much!
94
Silence Detector / Re: send email, smtp pwd ini file encoding
« Last post by frs.steve on August 25, 2025, 01:48:55 am »
thank you!
95
Silence Detector / Re: send email, smtp pwd ini file encoding
« Last post by Jan on August 21, 2025, 06:05:56 pm »
Code: [Select]
function PwdDecode(heslo: string): string;
var i,j,m,l: integer;
    w: string;
begin
w:='';
for i:=1 to (length(heslo) div 2) do
  begin
  m:=Ord(heslo[i*2-1]);
  l:=Ord(heslo[i*2]);
  j:=(m-(i mod 3)-ord('c'))*16+(l-(i mod 3)-ord('f'));
  w:=w+Chr(j);
  end;
result:=w;
end;
96
Silence Detector / send email, smtp pwd ini file encoding
« Last post by frs.steve on August 21, 2025, 03:45:44 pm »
hi
what is the encoding used for the smtp pwd stored in the ini file?
i need to reverse decode it
97
Feature Requests / Re: Text Source - Add Loop Options
« Last post by edwayne on August 13, 2025, 08:57:44 am »
The new Minimum Display Time option sounds like exactly what I was looking for. I’ll give it a try and see how it works with my RDS playout sequence.
98
Silence Detector / Setting Alerts as "High Priority"
« Last post by jtechguy65 on August 12, 2025, 10:55:05 pm »
I've recently switched from using the MMS feature via my cell phone provider to using an app called Pushover that has a special email address that I use now for the PiraCZ silence alerts. However, I've come across a problem when my phone is on silent, the alert tone I have designated isn't audible, my phone just vibrates. While I know what I just said may seem like a question for the Pushover app support, I'm working with them too about this. I just wonder if there is a way I can declare "high priority" in PiraCZ or is it something that needs to be set within the email server that is dedicated for sending the alerts from in PiraCZ?

Thanks
99
Release News and Tutorials / Re: Release News and Change Log
« Last post by Jan on August 10, 2025, 08:53:10 pm »
Version 4.2.6

http://pira.cz/rds/magicrds/MagicRDS_Setup.exe

  • External Text Sources: a text source can optionally control RT+ running bit: if the text is empty or skipped, the RT+ running bit is temporarily switched off
  • UECP: added section Device Setup - Communication
  • Bug fix: script editor sometimes did not show in the Text Conditions
  • Bug fix: Extensions - Software RT+ encoder has sometimes sent shifted RT+ tags if applied to RDS encoders with XCMD support
100
Configuration Options and Possibilities / Re: Magic RDS 4 task scheduler comamnds
« Last post by Jan on August 06, 2025, 05:35:30 pm »
There are some methods:

To send three commands immediately

Code: [Select]
send connection:"*" command:"IH=000000002002" command:"IH=000000002002" command:"IH=000000002002"
To send three commands in 1 second interval

Code: [Select]
send connection:"*" command:"IH=000000002002" delay:0
send connection:"*" command:"IH=000000002002" delay:1
send connection:"*" command:"IH=000000002002" delay:2
Pages: 1 ... 8 9 [10]