Completed hardware checksum, added the driver to F2 and F4.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@4076 35acf78f-673a-0410-8e92-d51de3d6d3f4
This commit is contained in:
parent
2945fe1349
commit
4bae8b9a02
|
@ -497,8 +497,12 @@ msg_t max_lld_get_receive_descriptor(MACDriver *macp,
|
||||||
/* Iterates through received frames until a valid one is found, invalid
|
/* Iterates through received frames until a valid one is found, invalid
|
||||||
frames are discarded.*/
|
frames are discarded.*/
|
||||||
while (!(rdes->rdes0 & STM32_RDES0_OWN)) {
|
while (!(rdes->rdes0 & STM32_RDES0_OWN)) {
|
||||||
if (!(rdes->rdes0 & (STM32_RDES0_AFM | STM32_RDES0_ES)) &&
|
if (!(rdes->rdes0 & (STM32_RDES0_AFM | STM32_RDES0_ES
|
||||||
(rdes->rdes0 & STM32_RDES0_FS) && (rdes->rdes0 & STM32_RDES0_LS)) {
|
#if STM32_IP_CHECKSUM_OFFLOAD
|
||||||
|
| STM32_RDES0_IPHCE | STM32_RDES0_PCE
|
||||||
|
#endif
|
||||||
|
)) && (rdes->rdes0 & STM32_RDES0_FS) &&
|
||||||
|
(rdes->rdes0 & STM32_RDES0_LS)) {
|
||||||
/* Found a valid one.*/
|
/* Found a valid one.*/
|
||||||
rdp->offset = 0;
|
rdp->offset = 0;
|
||||||
rdp->size = ((rdes->rdes0 & STM32_RDES0_FL_MASK) >> 16) - 4;
|
rdp->size = ((rdes->rdes0 & STM32_RDES0_FL_MASK) >> 16) - 4;
|
||||||
|
|
|
@ -6,6 +6,7 @@ PLATFORMSRC = ${CHIBIOS}/os/hal/platforms/STM32F2xx/stm32_dma.c \
|
||||||
${CHIBIOS}/os/hal/platforms/STM32/gpt_lld.c \
|
${CHIBIOS}/os/hal/platforms/STM32/gpt_lld.c \
|
||||||
${CHIBIOS}/os/hal/platforms/STM32/i2c_lld.c \
|
${CHIBIOS}/os/hal/platforms/STM32/i2c_lld.c \
|
||||||
${CHIBIOS}/os/hal/platforms/STM32/icu_lld.c \
|
${CHIBIOS}/os/hal/platforms/STM32/icu_lld.c \
|
||||||
|
${CHIBIOS}/os/hal/platforms/STM32/mac_lld.c \
|
||||||
${CHIBIOS}/os/hal/platforms/STM32/pwm_lld.c \
|
${CHIBIOS}/os/hal/platforms/STM32/pwm_lld.c \
|
||||||
${CHIBIOS}/os/hal/platforms/STM32/serial_lld.c \
|
${CHIBIOS}/os/hal/platforms/STM32/serial_lld.c \
|
||||||
${CHIBIOS}/os/hal/platforms/STM32/spi_lld.c \
|
${CHIBIOS}/os/hal/platforms/STM32/spi_lld.c \
|
||||||
|
|
|
@ -6,6 +6,7 @@ PLATFORMSRC = ${CHIBIOS}/os/hal/platforms/STM32F4xx/stm32_dma.c \
|
||||||
${CHIBIOS}/os/hal/platforms/STM32/gpt_lld.c \
|
${CHIBIOS}/os/hal/platforms/STM32/gpt_lld.c \
|
||||||
${CHIBIOS}/os/hal/platforms/STM32/i2c_lld.c \
|
${CHIBIOS}/os/hal/platforms/STM32/i2c_lld.c \
|
||||||
${CHIBIOS}/os/hal/platforms/STM32/icu_lld.c \
|
${CHIBIOS}/os/hal/platforms/STM32/icu_lld.c \
|
||||||
|
${CHIBIOS}/os/hal/platforms/STM32/mac_lld.c \
|
||||||
${CHIBIOS}/os/hal/platforms/STM32/pwm_lld.c \
|
${CHIBIOS}/os/hal/platforms/STM32/pwm_lld.c \
|
||||||
${CHIBIOS}/os/hal/platforms/STM32/serial_lld.c \
|
${CHIBIOS}/os/hal/platforms/STM32/serial_lld.c \
|
||||||
${CHIBIOS}/os/hal/platforms/STM32/spi_lld.c \
|
${CHIBIOS}/os/hal/platforms/STM32/spi_lld.c \
|
||||||
|
|
Loading…
Reference in New Issue