mirror of
				https://github.com/0xFEEDC0DE64/arduino-esp32.git
				synced 2025-10-31 14:11:42 +01:00 
			
		
		
		
	* TX Flow Control and Code cleanup * Use semaphore instead of delay TX functionality is done. * Use single buffer and empty queue on exit * Fix compile issues because of LwIP code relocation * Add temporary header to fix Azure not compiling * Fix AsyncUDP early init * AsyncUDP Multicast fixes * Add source mac address and rework multicast * Allow redefinition of default pins for Serials 1 and 2 * Update IDF to 3276a13 * Update esptool.py to 2.5.0 * Fix sketches * Fix log level in BluetoothSetial
		
			
				
	
	
		
			119 lines
		
	
	
		
			4.4 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			119 lines
		
	
	
		
			4.4 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
| /**
 | |
|  * @file
 | |
|  * Network Point to Point Protocol over Serial header file.
 | |
|  *
 | |
|  */
 | |
| 
 | |
| /*
 | |
|  * Redistribution and use in source and binary forms, with or without modification,
 | |
|  * are permitted provided that the following conditions are met:
 | |
|  *
 | |
|  * 1. Redistributions of source code must retain the above copyright notice,
 | |
|  *    this list of conditions and the following disclaimer.
 | |
|  * 2. Redistributions in binary form must reproduce the above copyright notice,
 | |
|  *    this list of conditions and the following disclaimer in the documentation
 | |
|  *    and/or other materials provided with the distribution.
 | |
|  * 3. The name of the author may not be used to endorse or promote products
 | |
|  *    derived from this software without specific prior written permission.
 | |
|  *
 | |
|  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED
 | |
|  * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
 | |
|  * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT
 | |
|  * SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
 | |
|  * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT
 | |
|  * OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
 | |
|  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
 | |
|  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
 | |
|  * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY
 | |
|  * OF SUCH DAMAGE.
 | |
|  *
 | |
|  * This file is part of the lwIP TCP/IP stack.
 | |
|  *
 | |
|  */
 | |
| 
 | |
| #include "netif/ppp/ppp_opts.h"
 | |
| #if PPP_SUPPORT && PPPOS_SUPPORT /* don't build if not configured for use in lwipopts.h */
 | |
| 
 | |
| #ifndef PPPOS_H
 | |
| #define PPPOS_H
 | |
| 
 | |
| #include "lwip/sys.h"
 | |
| 
 | |
| #include "ppp.h"
 | |
| #include "vj.h"
 | |
| 
 | |
| /* PPP packet parser states.  Current state indicates operation yet to be
 | |
|  * completed. */
 | |
| enum {
 | |
|   PDIDLE = 0,  /* Idle state - waiting. */
 | |
|   PDSTART,     /* Process start flag. */
 | |
|   PDADDRESS,   /* Process address field. */
 | |
|   PDCONTROL,   /* Process control field. */
 | |
|   PDPROTOCOL1, /* Process protocol field 1. */
 | |
|   PDPROTOCOL2, /* Process protocol field 2. */
 | |
|   PDDATA       /* Process data byte. */
 | |
| };
 | |
| 
 | |
| /* PPPoS serial output callback function prototype */
 | |
| typedef u32_t (*pppos_output_cb_fn)(ppp_pcb *pcb, u8_t *data, u32_t len, void *ctx);
 | |
| 
 | |
| /*
 | |
|  * Extended asyncmap - allows any character to be escaped.
 | |
|  */
 | |
| typedef u8_t ext_accm[32];
 | |
| 
 | |
| /*
 | |
|  * PPPoS interface control block.
 | |
|  */
 | |
| typedef struct pppos_pcb_s pppos_pcb;
 | |
| struct pppos_pcb_s {
 | |
|   /* -- below are data that will NOT be cleared between two sessions */
 | |
|   ppp_pcb *ppp;                    /* PPP PCB */
 | |
|   pppos_output_cb_fn output_cb;    /* PPP serial output callback */
 | |
| 
 | |
|   /* -- below are data that will be cleared between two sessions
 | |
|    *
 | |
|    * last_xmit must be the first member of cleared members, because it is
 | |
|    * used to know which part must not be cleared.
 | |
|    */
 | |
|   u32_t last_xmit;                 /* Time of last transmission. */
 | |
|   ext_accm out_accm;               /* Async-Ctl-Char-Map for output. */
 | |
| 
 | |
|   /* flags */
 | |
|   unsigned int open            :1; /* Set if PPPoS is open */
 | |
|   unsigned int pcomp           :1; /* Does peer accept protocol compression? */
 | |
|   unsigned int accomp          :1; /* Does peer accept addr/ctl compression? */
 | |
| 
 | |
|   /* PPPoS rx */
 | |
|   ext_accm in_accm;                /* Async-Ctl-Char-Map for input. */
 | |
|   struct pbuf *in_head, *in_tail;  /* The input packet. */
 | |
|   u16_t in_protocol;               /* The input protocol code. */
 | |
|   u16_t in_fcs;                    /* Input Frame Check Sequence value. */
 | |
|   u8_t in_state;                   /* The input process state. */
 | |
|   u8_t in_escaped;                 /* Escape next character. */
 | |
| };
 | |
| 
 | |
| /* Create a new PPPoS session. */
 | |
| ppp_pcb *pppos_create(struct netif *pppif, pppos_output_cb_fn output_cb,
 | |
|        ppp_link_status_cb_fn link_status_cb, void *ctx_cb);
 | |
| 
 | |
| #if !NO_SYS && !PPP_INPROC_IRQ_SAFE
 | |
| /* Pass received raw characters to PPPoS to be decoded through lwIP TCPIP thread. */
 | |
| err_t pppos_input_tcpip(ppp_pcb *ppp, u8_t *s, int l);
 | |
| #endif /* !NO_SYS && !PPP_INPROC_IRQ_SAFE */
 | |
| 
 | |
| /* PPP over Serial: this is the input function to be called for received data. */
 | |
| void pppos_input(ppp_pcb *ppp, u8_t* data, int len);
 | |
| 
 | |
| 
 | |
| /*
 | |
|  * Functions called from lwIP
 | |
|  * DO NOT CALL FROM lwIP USER APPLICATION.
 | |
|  */
 | |
| #if !NO_SYS && !PPP_INPROC_IRQ_SAFE
 | |
| err_t pppos_input_sys(struct pbuf *p, struct netif *inp);
 | |
| #endif /* !NO_SYS && !PPP_INPROC_IRQ_SAFE */
 | |
| 
 | |
| #endif /* PPPOS_H */
 | |
| #endif /* PPP_SUPPORT && PPPOL2TP_SUPPORT */
 |