slip working with int driven rx

This commit is contained in:
2023-09-28 18:03:02 +02:00
parent 5c75cfa63a
commit 8bca815cd2
8 changed files with 160 additions and 27 deletions

View File

@ -328,9 +328,17 @@ a lot of data that needs to be copied, this should be set high. */
#endif /* LWIP_OPTTEST_FILE */
// FreeRTOS defines
#define LWIP_FREERTOS_CHECK_CORE_LOCKING 1
// Disable slip task
#define SLIP_USE_RX_THREAD 0
#define SLIP_RX_FROM_ISR 1
#define SLIP_RX_QUEUE 1
/* The following defines must be done even in OPTTEST mode: */
#define LWIP_FREERTOS_CHECK_CORE_LOCKING 1
void sys_check_core_locking(void);
@ -339,7 +347,6 @@ void sys_check_core_locking(void);
void sys_mark_tcpip_thread(void);
#define LWIP_MARK_TCPIP_THREAD() sys_mark_tcpip_thread()
// Disable slip task
#define SLIP_USE_RX_THREAD 0
#endif /* LWIP_LWIPOPTS_H */