Posted by: Jan
« on: April 24, 2016, 07:54:56 pm »This is a 3rd party product from UK using the MRDS1322 IC.
Thank you for using this forum as the technical support base for your device.
● You can format the text and attach screenshots, photos and RDS Spy records
● Faster reply: 50 % of questions are answered within 30 minutes
● You don't need to register (but registration is possible)
● The members represent a wide range of experts
● The resolution will be helpful to other users
● You'll be notified by email about new post
const Grp3A: array [0..7] of byte = ($60, $01, $30, $16, $00, $00, $4B, $D7);
var Grp11A: array [0..7] of byte;
begin
Send(7,Grp3A); //ODA AID cyclic transmission
Grp11A[0]:=$67; //udg2 address (see mrds1322.pdf)
Grp11A[1]:=$B0; //first byte (group 11A)
Grp11A[2]:=$08; Grp11A[3]:=$24; Grp11A[4]:=$A0; Grp11A[5]:=$20; Grp11A[6]:=$05; //tag definition
Grp11A[7]:=$01; //send one time
Repeat:
Sleep(500);
Send(7,Grp11A); //send tag group now
Goto Repeat;
end;