61 lines
1.9 KiB
C
61 lines
1.9 KiB
C
|
|
/* add user code begin Header */
|
||
|
|
/**
|
||
|
|
**************************************************************************
|
||
|
|
* @file wk_lwip.h
|
||
|
|
* @brief This file contains all the functions prototypes for the wk_lwip.c
|
||
|
|
* file.
|
||
|
|
**************************************************************************
|
||
|
|
* Copyright (c) 2025, Artery Technology, All rights reserved.
|
||
|
|
*
|
||
|
|
* The software Board Support Package (BSP) that is made available to
|
||
|
|
* download from Artery official website is the copyrighted work of Artery.
|
||
|
|
* Artery authorizes customers to use, copy, and distribute the BSP
|
||
|
|
* software and its related documentation for the purpose of design and
|
||
|
|
* development in conjunction with Artery microcontrollers. Use of the
|
||
|
|
* software is governed by this copyright notice and the following disclaimer.
|
||
|
|
*
|
||
|
|
* THIS SOFTWARE IS PROVIDED ON "AS IS" BASIS WITHOUT WARRANTIES,
|
||
|
|
* GUARANTEES OR REPRESENTATIONS OF ANY KIND. ARTERY EXPRESSLY DISCLAIMS,
|
||
|
|
* TO THE FULLEST EXTENT PERMITTED BY LAW, ALL EXPRESS, IMPLIED OR
|
||
|
|
* STATUTORY OR OTHER WARRANTIES, GUARANTEES OR REPRESENTATIONS,
|
||
|
|
* INCLUDING BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY,
|
||
|
|
* FITNESS FOR A PARTICULAR PURPOSE, OR NON-INFRINGEMENT.
|
||
|
|
*
|
||
|
|
**************************************************************************
|
||
|
|
*/
|
||
|
|
/* add user code end Header */
|
||
|
|
|
||
|
|
/* Define to prevent recursive inclusion -------------------------------------*/
|
||
|
|
#ifndef __NETCONF_H
|
||
|
|
#define __NETCONF_H
|
||
|
|
|
||
|
|
#ifdef __cplusplus
|
||
|
|
extern "C" {
|
||
|
|
#endif
|
||
|
|
|
||
|
|
/* Includes ------------------------------------------------------------------*/
|
||
|
|
/* add user code begin 0 */
|
||
|
|
|
||
|
|
/* add user code end 0 */
|
||
|
|
|
||
|
|
void wk_lwip_app(void);
|
||
|
|
void wk_lwip_init(void);
|
||
|
|
void lwip_pkt_handle(void);
|
||
|
|
void time_update(void);
|
||
|
|
void lwip_periodic_handle(volatile uint32_t localtime);
|
||
|
|
void lwip_rx_loop_handler(void);
|
||
|
|
void wk_time_user_handler(void);
|
||
|
|
|
||
|
|
/* add user code begin 1 */
|
||
|
|
|
||
|
|
/* add user code end 1 */
|
||
|
|
|
||
|
|
#ifdef __cplusplus
|
||
|
|
}
|
||
|
|
#endif
|
||
|
|
|
||
|
|
#endif /* __NETCONF_H */
|
||
|
|
|
||
|
|
|
||
|
|
|