- 신규로 표시
- 북마크
- 구독
- 소거
- RSS 피드 구독
- 강조
- 인쇄
- 부적절한 컨텐트 신고
I have developed a PCB with 2 ethernet ports. Both ports are a copy of the hardware from the development PCB. I was able to get the stand alone lwIP web server running on the dev. PCB but it won't run on my PCB. I did change the name of my ethernet modules to lan91c111_0 & lan91c111_1 in SOPC builder. Where can I make to change in the lwIP code to call out my new module names.
링크가 복사됨
2 응답
- 신규로 표시
- 북마크
- 구독
- 소거
- RSS 피드 구독
- 강조
- 인쇄
- 부적절한 컨텐트 신고
Does LWIP even support two ports? I know Linux and eCos do...
- 신규로 표시
- 북마크
- 구독
- 소거
- RSS 피드 구독
- 강조
- 인쇄
- 부적절한 컨텐트 신고
I figured out the answer to my problem. For anyone who may face the problem
The line in code dev_list_ptr = (alt_avalon_lan91c111_if*)alt_ethernet_device_list.next; can also be changed to dev_list_ptr = (alt_avalon_lan91c111_if*)alt_ethernet_device_list.previous; You can use these functions to alternate between the different ports on the PCB. Thanks for taking the time to respond Mike.