project:cfg:BoardConfig_IPC: Added fastboot BoardConfig file and firmware post-scripts, distinguishing between the BoardConfigs for Luckfox Pico Pro and Luckfox Pico Max. project:app: Added fastboot_client and rk_smart_door for quick boot applications; updated rkipc app to adapt to the latest media library. media:samples: Added more usage examples. media:rockit: Fixed bugs; removed support for retrieving data frames from VPSS. media:isp: Updated rkaiq library and related tools to support connection to RKISP_Tuner. sysdrv:Makefile: Added support for compiling drv_ko on Luckfox Pico Ultra W using Ubuntu; added support for custom root filesystem. sysdrv:tools:board: Updated Buildroot optional mirror sources, updated some software versions, and stored device tree files and configuration files that undergo multiple modifications for U-Boot and kernel separately. sysdrv:source:mcu: Used RISC-V MCU SDK with RT-Thread system, mainly for initializing camera AE during quick boot. sysdrv:source:uboot: Added support for fastboot; added high baud rate DDR bin for serial firmware upgrades. sysdrv:source:kernel: Upgraded to version 5.10.160; increased NPU frequency for RV1106G3; added support for fastboot. Signed-off-by: luckfox-eng29 <eng29@luckfox.com>
87 lines
2.1 KiB
C
87 lines
2.1 KiB
C
#include "uip.h"
|
|
#include "uip_arp.h"
|
|
#include "network-device.h"
|
|
#include "httpd.h"
|
|
#include "timer.h"
|
|
|
|
#define BUF ((struct uip_eth_hdr *)&uip_buf[0])
|
|
|
|
/*---------------------------------------------------------------------------*/
|
|
int
|
|
main(void)
|
|
{
|
|
int i;
|
|
uip_ipaddr_t ipaddr;
|
|
struct timer periodic_timer, arp_timer;
|
|
|
|
timer_set(&periodic_timer, CLOCK_SECOND / 2);
|
|
timer_set(&arp_timer, CLOCK_SECOND * 10);
|
|
|
|
network_device_init();
|
|
uip_init();
|
|
|
|
uip_ipaddr(ipaddr, 192,168,0,2);
|
|
uip_sethostaddr(ipaddr);
|
|
|
|
httpd_init();
|
|
|
|
while(1) {
|
|
uip_len = network_device_read();
|
|
if(uip_len > 0) {
|
|
if(BUF->type == htons(UIP_ETHTYPE_IP)) {
|
|
uip_arp_ipin();
|
|
uip_input();
|
|
/* If the above function invocation resulted in data that
|
|
should be sent out on the network, the global variable
|
|
uip_len is set to a value > 0. */
|
|
if(uip_len > 0) {
|
|
uip_arp_out();
|
|
network_device_send();
|
|
}
|
|
} else if(BUF->type == htons(UIP_ETHTYPE_ARP)) {
|
|
uip_arp_arpin();
|
|
/* If the above function invocation resulted in data that
|
|
should be sent out on the network, the global variable
|
|
uip_len is set to a value > 0. */
|
|
if(uip_len > 0) {
|
|
network_device_send();
|
|
}
|
|
}
|
|
|
|
} else if(timer_expired(&periodic_timer)) {
|
|
timer_reset(&periodic_timer);
|
|
for(i = 0; i < UIP_CONNS; i++) {
|
|
uip_periodic(i);
|
|
/* If the above function invocation resulted in data that
|
|
should be sent out on the network, the global variable
|
|
uip_len is set to a value > 0. */
|
|
if(uip_len > 0) {
|
|
uip_arp_out();
|
|
network_device_send();
|
|
}
|
|
}
|
|
|
|
#if UIP_UDP
|
|
for(i = 0; i < UIP_UDP_CONNS; i++) {
|
|
uip_udp_periodic(i);
|
|
/* If the above function invocation resulted in data that
|
|
should be sent out on the network, the global variable
|
|
uip_len is set to a value > 0. */
|
|
if(uip_len > 0) {
|
|
uip_arp_out();
|
|
network_device_send();
|
|
}
|
|
}
|
|
#endif /* UIP_UDP */
|
|
|
|
/* Call the ARP timer function every 10 seconds. */
|
|
if(timer_expired(&arp_timer)) {
|
|
timer_reset(&arp_timer);
|
|
uip_arp_timer();
|
|
}
|
|
}
|
|
}
|
|
return 0;
|
|
}
|
|
/*---------------------------------------------------------------------------*/
|