Windows Forms And Threading Is Easy

Ever wanted to use threads and update the user interface without worry about the InvokeRequired thing? Use SynchronizationContext!

1 using System;
2 using System.Windows.Forms;
3 using System.Threading;
4
5 namespace WindowsFormAndThreadingIsEasy
6 {
7     public partial class Form1 : Form
8     {
9         private SynchronizationContext context;
10         private Thread myThread;
11         private event EventHandler myEvent;
12
13         public Form1()
14         {
15             InitializeComponent();
16
17             context = SynchronizationContext.Current;
18
19             myEvent += new EventHandler(Form1_myEvent);
20
21             myThread = new Thread(ThreadProc);
22             myThread.IsBackground = true;
23             myThread.Start();
24         }
25
26         private int i = 0;
27         void Form1_myEvent(object sender, EventArgs e)
28         {
29             i++;
30             textBox1.Text = i.ToString();
31         }
32
33         private void OnMyEvent(object state)
34         {
35             EventArgs e = state as EventArgs;
36             if (myEvent != null)
37                 myEvent(this, e);
38         }
39
40
41         private void ThreadProc()
42         {
43             while (true)
44             {
45                 Thread.Sleep(1000);
46
47                 if (context != null)
48                 {
49                     context.Post(new SendOrPostCallback(OnMyEvent), null);
50                 }
51                 else
52                 {
53                     OnMyEvent(null);
54                 }
55             }
56         }
57
58
59     }
60 }

Download Visual Studio 2005 Project. (unzip with 7-zip).

Atmel AVR Atmega168 RDS decoder with serial output

I have build a RDS (Radio Data System) decoder with a microcontroller from Atmel.
This decoder is fed by a RDS demodulator IC (or tuner) which has RDDA (data signal) and RDCL (clock signal) outputs.

The microcontrolller is an Atmega168 clocked on the external 4.332MHz crystal from the RDS demodulator.
In my prototype I have used the (I think obsolete) TDA7330B RDS demodulator IC from STMicroelectronics.
The TDA7330B is connected to the Atmega168 with RDDA connected to PD4 (on PORTD) and RDCL to INT0 (PD2).

The tuner I have used is an old Hauppauge WinTV PCI card with FM tuner which I can tune to the Frequency I want with some software.
The tuner module on this card is an FM1216 from Philips.
It has an unmodulated MPX FM signal output (AF sound output) which the RDS demodulator needs.
This is the same signal which is fed into a stereo decoder to produce stereo sound outputs.

The yellow wire on the right is the MPX output:

 

This is the TDA7330B RDS demodulator, you can see the MPX wire coming from the WinTV tuner.
This board also provides the clock signal for the microcontroller (wire on the crystal) and RDDA and RDCL outputs.

 

This is the Atmega168 microcontroller which tries to decode the RDDA and RDCL RDS outputs from the demodulator.
When the Atmega168 successfully decodes something it will send the output on its USART port to the PC wich is running a terminal program.
The serial output first goes to the MAX233 to convert the signal to RS232 levels. The speed is 38K4 8N1.

 

Hauppauge WinTV radio software is used to tune to the correct station:

 

The serial output from the microcontroller looks like this:

The software in the Atmega168 is able to decode the following RDS data:

  • Programme Identification code (PI: 0x83C7, Detected new station.)
  • Program service name (PS: RADIO538)
  • Programme Type code (PTY: 0x0A, Pop Music.)
  • Traffic Programme Identification code & Traffic announcement code (TP&TA: 0x01 0x00, Traffic announcements available on this station and maybe via EON on another station.)
  • Music Speech switch code (MS: 0x01, Music is being broadcasted or station does not use MS flag.)
  • Decoder-identification control code (DI: 0x01, Stereo, Dynamic PTY.)
  • Alternative frequency codes (AF: 0x98, 102.7MHz.)
  • Linkage Actuator (LA: 0x00)
  • Extended Country Code (ECC: 0xE3)
  • RadioText (RTA: Radio 538 = Randstad (Zuid) 102.7 FM)
  • Clock-time and date (CT: 0x1A53CD844, UTC 2006-07-02 (MJD 53918) 13:33:00 +02:00, TIME 15:33:00)

The software can also output all RDS groups in undecoded form by sending character ‘G’ to the Atmega:

 

Downloads

20060629-1 HEX file for the Atmage168. Note: low fuse: 0xF0, high fuse: 0xDD.

Released source code for the 20060629-1 version under GPL2 license. Have fun, let me know what you made with it! Send me some
pictures and details of your project.

20060629-1 source for the Atmage168

It is funny to note that when I am developing the software in the Atmega all sorts of radio stations have very crappy RDS encoders installed.

For example:

  • This station does not send correct UTC offset (I live in +2:00 I think):
    PI: 0x83C7, Detected new station.
    PS: RADIO538
    CT: 0x1A53CF740, UTC 2006-07-02 (MJD 53918) 15:29:00 +00:00, TIME 15:29:00

    The UTC time is send in local time.

  • However, some station can do worse:
    PI: 0x8062, Detected new station.
    RTA: Den HaagFM 92.0 Den HaagFM 92.0 Den HaagFM 92.0 Den HaagFM 92.0
    CT: 0x1A53CFD40, UTC 2006-07-02 (MJD 53918) 15:53:00 +00:00, TIME 15:53:00

    This station does not send the correct offset or the correct time, it is 10 minutes in the future.

  • This station does even worse:
    PI: 0x845A, Detected new station.
    RTA: Den Haag:89.8 MHz  Rotterdam:102.2 MHz  e-mail: studio@amorfm.nl
    CT: 0x1A53CE540, UTC 2006-07-02 (MJD 53918) 14:21:00 +00:00, TIME 14:21:00

    The time is 1,5 hours(!) in the past.

  • This station has a bug in its RDS encoder, it is toglling the Music Speech flag very fast (also the DI flag does not make sense):
    PI: 0x8062, Detected new station.
    MS: 0x00, Speech is being broadcasted.
    MS: 0x01, Music is being broadcasted or station does not use MS flag.
    DI: 0x04, Mono, Compressed, Dynamic PTY.
    MS: 0x00, Speech is being broadcasted.
    MS: 0x01, Music is being broadcasted or station does not use MS flag.
    DI: 0x00, Mono, Dynamic PTY.
    MS: 0x00, Speech is being broadcasted.
    MS: 0x01, Music is being broadcasted or station does not use MS flag.
    MS: 0x00, Speech is being broadcasted.
    MS: 0x01, Music is being broadcasted or station does not use MS flag.
    DI: 0x01, Stereo, Dynamic PTY.
    MS: 0x00, Speech is being broadcasted.
    MS: 0x01, Music is being broadcasted or station does not use MS flag.
    DI: 0x00, Mono, Dynamic PTY.
    MS: 0x00, Speech is being broadcasted.
    MS: 0x01, Music is being broadcasted or station does not use MS flag.
    MS: 0x00, Speech is being broadcasted.
    DI: 0x01, Stereo, Dynamic PTY.
    DI: 0x00, Mono, Dynamic PTY.
    MS: 0x00, Speech is being broadcasted.
    MS: 0x01, Music is being broadcasted or station does not use MS flag.
    MS: 0x00, Speech is being broadcasted.
    MS: 0x01, Music is being broadcasted or station does not use MS flag.