Forums » Software Development »
MSGQ - Message Queue Manager problem
Added by Silvano Bertoldo over 10 years ago
Hello everybody.
We see an unexpected behaviour during simple debugging operations.
/*
* main.c
*/
#include <stdio.h>
#include <std.h>
#include <log.h>
#include "testcfg.h"
int pippi1000;
Void main(void)
{
short int i;
// LOG_Obj obj;
//char *msg = "Hello world!";
//LOG_printf(&obj, "%s", msg);
printf("CIAO MONDO\n");
for(i=0;i<10;i++)
pippi[i]=0x0A;
return;
}
We are able to reach the main, during the debug, if the MSGQ - Message Queue Manager flag in the .tcf file is set to "False" while we cannot reach the main if it is set to "True". In this case Code Composer says only that DSP is running and we could step with "assembly".
Do you know the reasons why this happens?
Thanks in advance.
Silvano
Go to top