Error on Timer1 with dsPIC

Hello. I’m creating a project using freeRTOS in dsPIC30F6011A, and when I compile the following error occurs: SourceportableMPLABPIC24_dsPICport.c: In function ‘prvSetupTimerInterrupt’: SourceportableMPLABPIC24_dsPICport.c:277: error: ‘TCON_16BIT’ has no member named ‘TCKPS0’ SourceportableMPLABPIC24_dsPICport.c:278: error: ‘TCON_16BIT’ has no member named ‘TCKPS1’ How can I resolve it?? Thanks Luis Farinha

Error on Timer1 with dsPIC

Is this the exact same question? http://sourceforge.net/forum/forum.php?thread_id=2593706&forum_id=382005 The setup of the tick interrupt uses a timer peripheral. If you want to switch the code from one device to another and the timer peripheral or the header files that define the timer registers are different then you are going to have to modify the code. You need to look up in the user manual for the dsPIC30 how you setup the timer to generate a fixed frequency tick. Also look at the header files. It might just be the header files that define the TCKPS0 structures have changed.

Error on Timer1 with dsPIC

The TCON Timer definiiton now defines a two bit field TCKPS instead of two sepereate 1 bit fields TCKPS0 and TCKPS1, just change the two assignments to a single assignment.