port.c configuration for ATmega1284P

Hi everyone, I need to set the port.c configuration for ATmega1284P. I’m currently using the follow one:
#define portCLEAR_COUNTER_ON_MATCH     ( 1<<COM1A1 )
#define portPRESCALE_1024                    ( (1<<CS12) | (1<<CS10) )
#define portPRESCALE_256                     ( 1<<CS12 )
#define portPRESCALE_64                      ( (1<<CS11) | (1<<CS10) )
#define portCLOCK_PRESCALER                  ( 64 )
#define portCOMPARE_MATCH_A_INTERRUPT_ENABLE ( 1<<OCIE1A )
#define TIMSK                                TIMSK1
Show I use TIMSK0 or TIMSK2 instead? And the portCOMPARE_MATCH_A_INTERRUPT_ENABLE is correct? Thanks in advance!
Paulo

port.c configuration for ATmega1284P

I don’t think that is an official port, and the configuration items are definitely not present in any port I have looked at before. These seem to be register bit value settings so you are best looking in the hardware manual or datasheet for the device for the correct settings. Or ask whoever wrote the port, I’m pretty sure it is not in the official code base.