Hey all
I am working currently with the TMS570LS 0714 A PZ QQ1 and I try to set up the SCI communication using the SCI2 (since the normal SCI is not supported for the PZ Package) by using the IRQ interrupt.
I would like to enable an interrupt with "sciNotification(sciBASE_t *sci, uint32 flags)" function based on the RX INT of the SCI2.
In CCS I have the following code for the initialisation:
/* USER CODE BEGIN (1) */
#include <stdio.h>
#include "sci.h"
#include "spi.h"
#include "can.h"
#include "esm.h"
#include "gio.h"
#include "sys_core.h"
/* USER CODE END */
/* USER CODE BEGIN (3) */
_enable_interrupt_();
sciInit();
sciReceive(sciREG, 1, &sci_cmd);
In the HAL Code Configurator I enabled the RX INT of SCI2 and enabled Channel 64 of SCI Level 0 interrupt.
In the past, I was able to do the described task with the TMS570LS 1224 CPG EQQ1 Eval board using the normal SCI ports.
Unfortunatley, I dont know the reason why it is not working with this uC. Hope someone has an idea.
Thank you