Link between LIN and TERA TERM
Hello,
I'm trying to develop on SPC5 Studio with the eval board SPC574S-DISP. I want to make a link between LIN and the software tera term to debug my code. I configured pins PA5 and PA6 for LIN according to the schematics. But it didn't work. Can you help me ?
This is my main code if it can help you :
int main(void) {
/* Initialization of all the imported components in the order specified in
the application wizard. The function is generated automatically.*/
componentsInit();
/* Enable Interrupts */
irqIsrEnable();
/* Start PIT driver */
pit_lld_start(&PITD1, pit0_config);
/* Start lin com */
lin_lld_start(&LD1, &lin_config_configuration_name);
/* Application main loop.*/
for ( ; ; ) {
osalThreadDelayMilliseconds(1000);
lin_lld_transmit(&LD1, 1, "HELLO WORLD", 8);
}
}Best regards
Bastien
