Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Openbic v2.6 ethernet driver support #131

Merged
merged 2 commits into from
Aug 28, 2024

Commits on Aug 28, 2024

  1. drivers: ethernet: support npcm4xx ethernet

    1. Jtag is disabled by default.
    2. samples/net/sockets/dumb_http_server is used
       for testing. (optional)
    3. Test result for reference:
       Local IP: 192.0.2.1
       Remote IP: 192.0.2.2
       uart:~$ net ping 192.0.2.2
       PING 192.0.2.2
       28 bytes from 192.0.2.2 to 192.0.2.1: icmp_seq=0 ttl=64 time=1 ms
       28 bytes from 192.0.2.2 to 192.0.2.1: icmp_seq=1 ttl=64 time=1 ms
       28 bytes from 192.0.2.2 to 192.0.2.1: icmp_seq=2 ttl=64 time=1 ms
    4. The local and remote IPs could be changed in
       CONFIG_NET_CONFIG_MY_IPV4_ADDR and
       CONFIG_NET_CONFIG_PEER_IPV4_ADDR.
    
    Signed-off-by: Tyrone Ting <[email protected]>
    warp5tw committed Aug 28, 2024
    Configuration menu
    Copy the full SHA
    4f66c3c View commit details
    Browse the repository at this point in the history
  2. net: lib: config: Fix the timeout when waiting on network

    Loop by LOOP_DIVIDER counts instead of the number of seconds
    specified in the timeout.
    
    Fixes zephyrproject-rtos#39672
    
    Signed-off-by: Paul Gautreaux <[email protected]>
    paulgfb authored and warp5tw committed Aug 28, 2024
    Configuration menu
    Copy the full SHA
    5388fc6 View commit details
    Browse the repository at this point in the history