Thanks for the feedback!
I'm using CW10.3, MQX4.0 and started from a bsp twr60F120. The device is a MK60FN1M0VLQ12.
I see that the file sai.h is included which is located in "C:\Freescale\Freescale_MQX_4_0\mqx\source\io\sai"
This file contains the structure below which lacks SIZE, IN_BUFFER, and OUT_BUFFER. I see that it is present in the sai.h of MQX 4.1.
Does it mean that I have to switch to 4.1 (which might be a small risk for the existing project) or can I just copy the 4.1 file to the 4.0 directory?
typedef struct i2s_statistics_struct
{
/* Number of SAI interrupts so far */
uint_32 INTERRUPTS;
/* FIFO error */
uint_32 FIFO_ERROR;
/* FIFO sync error */
uint_32 BUFFER_ERROR;
/* Number of valid bytes received (not dummy receives) */
uint_32 RX_PACKETS;
/* Number of valid bytes transmitted (not dummy transmits) */
uint_32 TX_PACKETS;
/* Number of bytes currently read or wrote */
uint_32 PACKETS_PROCESSED;
/* Number of bytes currently buffered */
uint_32 PACKETS_QUEUED;
/* Number of bytes requested for reading or writing */
uint_32 PACKETS_REQUESTED;
} I2S_STATISTICS_STRUCT, _PTR_ I2S_STATISTICS_STRUCT_PTR;