Quote Originally Posted by Bill Agee View Post
First, you mentioned I should comment out the code related to RFOutputChannel. There were two sections in the .c file that refer to RFOutputChannel, one long and one short. Should I just delete both sections between the #ifdef/#endif? Why is this important? Something to do with the SCART connection?
It's just not required if you are going to be running the standard PAL-I system. And yes you just delete everthing between the #ifdev/#endif or just make sure you do not have the "flag" defined (see below)

Quote Originally Posted by Bill Agee View Post
Second, the MakeFile includes the following - sorry but I don't understand it - seems to include some references to NICAM and NZ channels that I've highlighted:

$(CC) $(CFLAGS) -DNZTVCHANNELS -DNICAMSTEREOMODE -c -o ukchan-2.5.5_nz-nicam.o ukchan-2.5.5_nz.c
The -D<flag> options just set the two flags NZTVCHANNELS and NICAMSTEROMODE which means that the code that lays between the #ifdef <flag> and #endif will be included when compiled. As you are running in PAL-I you probably don't need to do anything other than change the channel frequencies (and you can use either the Australian or the NewZealand channels as a basis for this).