Quality RTOS & Embedded Software

 Real time embedded FreeRTOS RSS feed 
Quick Start Supported MCUs PDF Books Trace Tools Ecosystem


Loading

Trace macro failing to be called (not compiled)

Posted by erupter on June 4, 2014

I have a basic project running, but tasks are not doing what I want so I would like to use the traceTASKSWITCHEDIN/OUT macros to output something to a logic analyzer.

So here is my code


void setLogOutput (unsigned long c)
{
    int a;
    if (c == 0)
        a = 0;
}

#define traceTASK_SWITCHED_IN() setLogOutput(pxCurrentTCB->uxTaskNumber)
#define traceTASK_SWITCHED_OUT() setLogOutput(0)
#include "FreeRTOS.h"

Obviously setLogOutput doesn't do anything right now, and I know it. But the point is that neighter SWITCHEDIN nor SWITCHEDOUT are ever called or compiled. Breakpoints in tasks.c are broken. I cannot understand what I am doing wrong, could anybody please help me?


Trace macro failing to be called (not compiled)

Posted by rtel on June 4, 2014

Where have you defined the macros?

The easiest place to put them, to get the correct include order, is at the bottom of FreeRTOSConfig.h.

Regards.


Trace macro failing to be called (not compiled)

Posted by heinbali01 on June 4, 2014

Hi,

You could try:

~~~~~~ volatile unsigned int dummy; void setLogOutput (unsigned long c) { dummy++; } ~~~~~~

It is possible that optimiser ignores the code, because it does nothing.

GCC is very clever with this: it sees when a variable is only used in the left-hand size of expressions, and in that case it will never be implemented. 'volatile' might help or better: print the variable somewhere.

Regards.


Trace macro failing to be called (not compiled)

Posted by jdurand on June 4, 2014

I've been seeing GCC get more and more clever about working around my ways to keep variables/code from being deleted. There was a time when global variables were safe, but not now.

I've tried debugging with no optimization, but that just blows the code up where it doesn't fit. I now run with -Og which seems to be a reasonable compromise most of the time.

On 06/04/2014 09:56 AM, Hein Tibosch wrote: > GCC is very clever with this: it sees when a variable is only used in > the left-hand size of expressions, and in that case it will never be > implemented. 'volatile' might help or better: print the variable > somewhere.

Jerry Durand, Durand Interstellar, Inc. www.interstellar.com tel: +1 408 356-3886, USA toll free: 1 866 356-3886 Skype: jerrydurand


Trace macro failing to be called (not compiled)

Posted by heinbali01 on June 4, 2014

Yes indeed, gcc also makes global variables disappear, even if they appear in several modules (as LHS only).

~~~~~~ const char ipmarker[32] = "dEfAuLtIp192.168.2.116"; void somefunction() { asm ("" : : "r" (ipmarker) : "cc"); } ~~~~~~

This trick worked to get a const string included in the code without ever actually reading it. Note that some_function() must be called


Trace macro failing to be called (not compiled)

Posted by erupter on June 10, 2014

Sorry I thought I answered this but evidently I didn't.

Putting the macro at the end of FreeRTOSConfig.h solved my problem.


[ Back to the top ]    [ About FreeRTOS ]    [ Privacy ]    [ Sitemap ]    [ ]


Copyright (C) Amazon Web Services, Inc. or its affiliates. All rights reserved.

Latest News

NXP tweet showing LPC5500 (ARMv8-M Cortex-M33) running FreeRTOS.

Meet Richard Barry and learn about running FreeRTOS on RISC-V at FOSDEM 2019

Version 10.1.1 of the FreeRTOS kernel is available for immediate download. MIT licensed.

View a recording of the "OTA Update Security and Reliability" webinar, presented by TI and AWS.


Careers

FreeRTOS and other embedded software careers at AWS.



FreeRTOS Partners

ARM Connected RTOS partner for all ARM microcontroller cores

Espressif ESP32

IAR Partner

Microchip Premier RTOS Partner

RTOS partner of NXP for all NXP ARM microcontrollers

Renesas

STMicro RTOS partner supporting ARM7, ARM Cortex-M3, ARM Cortex-M4 and ARM Cortex-M0

Texas Instruments MCU Developer Network RTOS partner for ARM and MSP430 microcontrollers

OpenRTOS and SafeRTOS

Xilinx Microblaze and Zynq partner