Ethernet Connectivity Issue

I am currently working on EK-RA8D1 board, ethernet sample code working fine network up. if i configuration new FreeRTOS+TCP stacks, network is not up.

I have attached the code. I would greatly appreciate your assistance in bringing up the Ethernet interface.Your guidance in resolving the Ethernet interface issue would be sincerely appreciated.Thank you.

File : drive.google.com/.../view

Parents Reply Children
  • Hello IK_Renesas,

                    Thank you, code what you shared is working.

                    I found the problem in my code, PHYIC Reset input port pin configuration issue(P706), below change in pin_data.c worked,

                      { .pin = BSP_IO_PORT_07_PIN_06, .pin_cfg = ((uint32_t) IOPORT_CFG_DRIVE_HIGH
                      | (uint32_t) IOPORT_CFG_PORT_DIRECTION_OUTPUT | (uint32_t) IOPORT_CFG_PORT_OUTPUT_HIGH) },

                       FSP Version 5.8.0 this pin default configuration (Problem)

     { .pin = BSP_IO_PORT_07_PIN_06, .pin_cfg = ((uint32_t) IOPORT_CFG_PORT_DIRECTION_OUTPUT | (uint32_t) IOPORT_CFG_PORT_OUTPUT_LOW) },