nkjnm
Dependencies: MAX44000 nexpaq_mdk
Fork of LED_Demo by
mbd_os/libraries/doc/net/doc.txt@1:55a6170b404f, 2016-09-17 (annotated)
- Committer:
- nexpaq
- Date:
- Sat Sep 17 16:32:05 2016 +0000
- Revision:
- 1:55a6170b404f
checking in for sharing
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
nexpaq | 1:55a6170b404f | 1 | lwip/api/tcpip.c: tcpip_init -> tcpip_thread |
nexpaq | 1:55a6170b404f | 2 | |
nexpaq | 1:55a6170b404f | 3 | lwip/core/netif.c: netif_add |
nexpaq | 1:55a6170b404f | 4 | lwip/arch/lpc17_emac.c: lpc_enetif_init -> packet_rx, packet_tx |
nexpaq | 1:55a6170b404f | 5 | |
nexpaq | 1:55a6170b404f | 6 | === tcpip_thread === |
nexpaq | 1:55a6170b404f | 7 | while (true): |
nexpaq | 1:55a6170b404f | 8 | sys_timeouts_mbox_fetch(&mbox, (void **)&msg) |
nexpaq | 1:55a6170b404f | 9 | ... |
nexpaq | 1:55a6170b404f | 10 | |
nexpaq | 1:55a6170b404f | 11 | Feeding the tcpip_thread mbox: |
nexpaq | 1:55a6170b404f | 12 | tcpip_input |
nexpaq | 1:55a6170b404f | 13 | tcpip_callback_with_block |
nexpaq | 1:55a6170b404f | 14 | tcpip_timeout |
nexpaq | 1:55a6170b404f | 15 | tcpip_untimeout |
nexpaq | 1:55a6170b404f | 16 | tcpip_apimsg |
nexpaq | 1:55a6170b404f | 17 | tcpip_netifapi |
nexpaq | 1:55a6170b404f | 18 | |
nexpaq | 1:55a6170b404f | 19 | |
nexpaq | 1:55a6170b404f | 20 | === packet_rx === |
nexpaq | 1:55a6170b404f | 21 | while (true): |
nexpaq | 1:55a6170b404f | 22 | sys_arch_sem_wait(&lpc_enetif->RxSem, osWaitForever) |
nexpaq | 1:55a6170b404f | 23 | ... |
nexpaq | 1:55a6170b404f | 24 | |
nexpaq | 1:55a6170b404f | 25 | Feeding the RX semaphore: |
nexpaq | 1:55a6170b404f | 26 | ENET_IRQHandler |
nexpaq | 1:55a6170b404f | 27 | |
nexpaq | 1:55a6170b404f | 28 | |
nexpaq | 1:55a6170b404f | 29 | === packet_tx === |
nexpaq | 1:55a6170b404f | 30 | while (true): |
nexpaq | 1:55a6170b404f | 31 | sys_arch_sem_wait(&lpc_enetif->TxCleanSem, osWaitForever) |
nexpaq | 1:55a6170b404f | 32 | ... |
nexpaq | 1:55a6170b404f | 33 | |
nexpaq | 1:55a6170b404f | 34 | Feeding the TX semaphore: |
nexpaq | 1:55a6170b404f | 35 | ENET_IRQHandler |