-Fix that can cause USB stick to freeze up
-Add EEM Support
This commit is contained in:
parent
5e62a0dd20
commit
95d0b09954
9 changed files with 418 additions and 22 deletions
|
@ -467,7 +467,7 @@ void mac_LowpanToEthernet(void)
|
|||
|
||||
uip_len += UIP_LLH_LEN;
|
||||
|
||||
rndis_send(uip_buf, uip_len, 1);
|
||||
usb_eth_send(uip_buf, uip_len, 1);
|
||||
rndis_stat.rxok++;
|
||||
uip_len = 0;
|
||||
}
|
||||
|
@ -987,7 +987,7 @@ void mac_logTXtoEthernet(frame_create_params_t *p,frame_result_t *frame_result)
|
|||
|
||||
sendlen += UIP_LLH_LEN;
|
||||
|
||||
rndis_send(raw_buf, sendlen, 0);
|
||||
usb_eth_send(raw_buf, sendlen, 0);
|
||||
rndis_stat.rxok++;
|
||||
|
||||
return;
|
||||
|
@ -1040,7 +1040,7 @@ void mac_802154raw(const struct mac_driver *r)
|
|||
|
||||
sendlen += UIP_LLH_LEN;
|
||||
|
||||
rndis_send(raw_buf, sendlen, 1);
|
||||
usb_eth_send(raw_buf, sendlen, 1);
|
||||
rndis_stat.rxok++;
|
||||
|
||||
return;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue