my program is like this:
#include "Configuration1cfg.h"
#include"hwi.h "
void main()
{
   HWI_enable();
    LOG_printf(&LOG0,"jjjjjjj");
}
void HWI_int555()
{
 LOG_printf(&LOG0,"bbbbbbb");
}
I config the DSP/BIOS and connect the pin. But the interrupt not happen when CPU cycle have achieve!
I refer to theC6000 DSP/BIOS5.32 API ,but there seem to have a litter about the HWI Module and i cannot use the IRQ in this version.What should do?