newbie needs help for mips port

Hi everybody!! I’m new with FreeRTOS and i’m trying to compile a new demo application that should work on mips architecture. First step i’ve replicated the directory structure and after that i’ve created the stub files. Compiling stops because of this error: http://rafb.net/p/YdW75s34.html  –> it’s a nopaste link What’s wrong? Can anyone help??? Thanks Bie

newbie needs help for mips port

On the assumption you are using the PIC32 MIPS port, have you defined MPLAB_PIC32MX_PORT in your compiler options? This will ensure the correct portmacro.h file is included in your build. Look at the file sourceincludeportable.h for more info. If you are creating your own port then you will have to provide a portmacro.h file.

newbie needs help for mips port

i’m not using the pic32 port, my hope is to create a new porting for a mips emulation on verilog. I followed the guide lines and created stub files, and I also defined in gcc options "-D MIPS32_PORT", and added manually the code in sourceincludeportable.h file in order to link to the correct portmacro.h file. thanx for your first answer, and sorry for my english. :)

newbie needs help for mips port

me again… i solved last problem, but i get a new error now: http://rafb.net/p/6gLrEZ69.html what could the reason be? i suppose it’s a library include problem, but i don’t even know where to starte to solve it. tnx

newbie needs help for mips port

You appear to be making calls to the Microblaze libraries – which as you might expect are part of the Microblaze port not the MIPS port.  Which portmacro.h file did you base yours on? Look in the portmacro.h file, at the macros definitions for portENABLE_INTERRUPTS() and portDISABLE_INTERRUPTS(), also check the implementation of portENTER_CRITICAL() and portEXIT_CRITICAL().  You need these macros to be as per those defined in the PIC32 port.  It looks like you are using them as per defined in the Microblaze port. Regards.