1. 09 12月, 2021 1 次提交
  2. 06 12月, 2021 1 次提交
  3. 05 12月, 2021 1 次提交
  4. 29 11月, 2021 1 次提交
  5. 18 11月, 2021 1 次提交
  6. 15 11月, 2021 3 次提交
    • L
      [fix] format · 8e518f23
      liuxianliang 提交于
      8e518f23
    • yuke1412's avatar
      fix sys_arch.c · be2006f3
      yuke1412 提交于
      be2006f3
    • yuke1412's avatar
      ping cmd with specified netif in lwip-2.1.2 · cda78884
      yuke1412 提交于
      using LWIP_HOOK_IP4_ROUTE_SRC hook find specified netif route, using
      cmd `ping 192.168.xx.xx e0`, ping dest using e0 netif. if not found
      netif, using default netif, the effect is same as the cmd `ping 192.168.xx.xx` that only ping with default netif.
      cda78884
  7. 08 11月, 2021 3 次提交
  8. 07 11月, 2021 1 次提交
  9. 19 10月, 2021 1 次提交
  10. 23 9月, 2021 1 次提交
  11. 21 9月, 2021 1 次提交
  12. 12 9月, 2021 1 次提交
  13. 11 9月, 2021 4 次提交
    • mysterywolf's avatar
      使用poll.h代替dfs_poll.h · c3606887
      mysterywolf 提交于
      c3606887
    • B
      [BSP] fix compiling issue with libc · 0b13409c
      BernardXiong 提交于
      0b13409c
    • G
      [Netif] Fix the eth_tx_msg protection · 1ebf7b51
      Grissiom 提交于
      The ethernetif use semaphore netif->tx_ack to protect the local variable
      `struct eth_tx_msg msg` in function `ethernetif_linkoutput`. But the
      function could be called in multiple context: LwIP "tcpip" thread, "erx"
      thread(on linkup) and any user thread that call `udp_sendto`. So the
      global semaphore protection is not sufficient. It could only wakeup the
      top priority waiting thread instead of the thread that owns the `msg`
      and may result the `msg` next in the mailbox got destructed.
      
      So to use a `rt_completion` within the `struct eth_tx_msg` and
      synchronize on that. This could deal the ownership issue in an easy way.
      1ebf7b51
    • B
      [libc] remove rtlibc · 8da9f78d
      Bernard Xiong 提交于
      8da9f78d
  14. 05 9月, 2021 1 次提交
  15. 03 9月, 2021 1 次提交
  16. 01 9月, 2021 1 次提交
  17. 23 8月, 2021 1 次提交
  18. 10 8月, 2021 2 次提交
  19. 03 8月, 2021 2 次提交
  20. 01 8月, 2021 1 次提交
  21. 29 7月, 2021 1 次提交
    • I
      Update sockets.c · 406cebe7
      ImFovery 提交于
      1、更正lwip_accept()中调用netconn_peer()失败时,netconn_delete()会被调用两次,从而导致进入rt_assert_handler()错误。
      原因:(https://savannah.nongnu.org/bugs/?55536) bug #55536: lwIP 2.1.2: netconn_delete() called twice from lwip_accept()
      406cebe7
  22. 23 7月, 2021 1 次提交
  23. 16 7月, 2021 1 次提交
  24. 14 7月, 2021 1 次提交
  25. 12 7月, 2021 1 次提交
  26. 10 7月, 2021 2 次提交
    • W
      解决at_socket在极限情况下内存泄漏问题 · b9d24aff
      wenbodong2015 提交于
      AT模块在执行AT+CLOSE并返回OK后,在实际关闭前(上报URC前)仍然有
      可能接收到数据。所以接收数据时需要判断状态是否为AT_SOCKET_CONNECT。
      
      另,at_recv_notice_cb在拒绝数据包时,没有释放数据包内存,从而导致
      内在泄漏。
      b9d24aff
    • W
      解决at_socket编译失败的问题 · e38a8e93
      wenbodong2015 提交于
      失败现象为“找不到EAGAIN”,此问题由libc改动引发。
      e38a8e93
  27. 08 7月, 2021 1 次提交
  28. 07 7月, 2021 1 次提交
  29. 01 7月, 2021 2 次提交