renesas-rx / amazon-freertos

A fork/prototype of the Amazon FreeRTOS to support Renesas RX MCUs. Please refer to our wiki for more details.
https://github.com/renesas-rx/amazon-freertos/wiki
MIT License
7 stars 6 forks source link

FreeRTOS_IPInit() MAC address argument does not work #10

Open HirokiIshiguro opened 5 years ago

HirokiIshiguro commented 5 years ago

Describe the bug FreeRTOS_IPInit() MAC address argument does not work. Now, following MAC address setting is used at FreeRTOSConfig.h.

    uint8_t myethaddr[6] =
    {
        configMAC_ADDR0,
        configMAC_ADDR1,
        configMAC_ADDR2,
        configMAC_ADDR3,
        configMAC_ADDR4,
        configMAC_ADDR5
    }; //XXX Fix me

System information

Expected behavior FreeRTOS_IPInit() can set MAC address by using argument.

Screenshots or console output N/A

To reproduce N/A

Code to reproduce the bug N/A

Additional context N/A

Thank you!