Tip / Sign in to post questions, reply, level up, and achieve exciting badges. Know more

AURIX™ Forum Discussions

User-6_6-
Employee
Employee
5 questions asked 25 sign-ins First like received

No issue when debugging the project ASCLIN_Shell_UART_1_KIT_TC275_SB after importing in ADS. See Figure 1 output terminal.

However, once the pin configuration in initSerialInterface() is replaced by asclin3_init_pins(), the project is not working. See Figure 2 output terminal.

 

 /* Initialize the hardware peripherals */
initLED();
initSerialInterface();   // commented out the pin configuration
asclin3_init_pins();     // Initialize the pin from Pin Mapper


Do you know what is the issue, and how to solve it?

 

0 Likes
1 Solution
User-6_6-
Employee
Employee
5 questions asked 25 sign-ins First like received

The peripheral input signal need to be selected accordingly.

asclin3_init_pins(); // Initialize the pin from Pin Mapper
IfxAsclin_setRxInput(&MODULE_ASCLIN3, IfxAsclin_RxInputSelect_3); //set the peripheral input signal selection

View solution in original post

2 Replies
Prudhvi
Moderator
Moderator
Moderator
25 likes received 50 solutions authored 250 sign-ins

Hello,

The root cause may not be directly pointed to with the screenshots. Did you compare the functional differences with and without the Tasking Pin mapper ? Are all configurations in the ADS example and the Tasking pin mapper ensured to be same ?

Regards,

Prudhvi.

0 Likes
User-6_6-
Employee
Employee
5 questions asked 25 sign-ins First like received

The peripheral input signal need to be selected accordingly.

asclin3_init_pins(); // Initialize the pin from Pin Mapper
IfxAsclin_setRxInput(&MODULE_ASCLIN3, IfxAsclin_RxInputSelect_3); //set the peripheral input signal selection