Hi at all,
I try to modify the IPC DEMO Example for the F28M35H52C1. The Demo it self, works fine. But when I add a new Variable to the "TempMsg Struct" and try to read or write the Variable the System stuck and I get this message:
ti.sysbios.heaps.HeapBuf: line 125: assertion failure: HeapBuf_create's bufSize parameter is invalid (too small)
xdc.runtime.Error.raise: terminating execution
I use CCS 6.0.1.00040 und TI RTOS 1.21.0.09
This is the struct
typedef struct TempMsg {
MessageQ_MsgHeader hdr;
float temperatureF;
float temperatureC;
float test;
} TempMsg;
and with ((TempMsg *)msg)->testvar = test; I Try to write a Value, from M3 to C28