当前位置:   article > 正文

使用vivado 的sdk 建立自己的ps端程序-lwip-udp_vivado sdk unresolved inclusion:lwip/err.h

vivado sdk unresolved inclusion:lwip/err.h

1、说在前面的话

     本人在建立lwip工程项目的时候,跟着网上的各种各样的教程都是直接选择相关的模板直接进行修改然后修改程序的,这样的具体的操作过程如下:

FIle->New->Application Project , 然后通过选择下面的工程实例进行构建工程,其中会生成一个bsp 和一个你的工程的文件夹

 

本人希望能够在以又的lwip的协议栈的基础上,建立自己的工程项目。,那么建立的过程就有一定的不同:

1、FIle->New-> board support package , 然后选择standalone 点击完成。这个时候就可以添加自己的想要依赖地库了。

2、之后再选FIle->New->Application Project,然后模板中选择helloworld

然后就建立了一个自己的工程,内部的main 函数在hello world 中,你可以围绕main 建立自己想要实现的功能。

 

  1. /*
  2. * main.c
  3. *
  4. * Created on: 2020年1月16日
  5. * Author: Scottar
  6. */
  7. //--------------------------------------------------
  8. // blog.csdn.net/FPGADesigner
  9. // copyright by CUIT Qi Liu
  10. // Zynq Lwip UDP Communication Test Program
  11. //--------------------------------------------------
  12. #include "sleep.h"
  13. #include "user_udp.h"
  14. #include "sys_intr.h"
  15. #include "lwip/inet.h"
  16. extern unsigned udp_connected_flag;
  17. static XScuGic Intc; //GIC
  18. #define DEFAULT_IP_ADDRESS "192.168.1.10"
  19. #define DEFAULT_IP_MASK "255.255.255.0"
  20. #define DEFAULT_GW_ADDRESS "192.168.1.1"
  21. //
  22. //#define DEFAULT_IP_ADDRESS "115.156.163.175"
  23. //#define DEFAULT_IP_MASK "255.255.254.0"
  24. //#define DEFAULT_GW_ADDRESS "115.156.163.254"
  25. static void assign_default_ip(ip_addr_t *ip, ip_addr_t *mask, ip_addr_t *gw)
  26. {
  27. int err;
  28. xil_printf("Configuring default IP %s \r\n", DEFAULT_IP_ADDRESS);
  29. err = inet_aton(DEFAULT_IP_ADDRESS, ip);
  30. if (!err)
  31. xil_printf("Invalid default IP address: %d\r\n", err);
  32. err = inet_aton(DEFAULT_IP_MASK, mask);
  33. if (!err)
  34. xil_printf("Invalid default IP MASK: %d\r\n", err);
  35. err = inet_aton(DEFAULT_GW_ADDRESS, gw);
  36. if (!err)
  37. xil_printf("Invalid default gateway address: %d\r\n", err);
  38. }
  39. int main(void)
  40. {
  41. struct netif *netif, server_netif;
  42. struct ip4_addr ipaddr, netmask, gw;
  43. /* 开发板MAC地址 */
  44. unsigned char mac_ethernet_address [] =
  45. {0x00, 0x0a, 0x35, 0x00, 0x01, 0x02};
  46. /* 开启中断系统 */
  47. Init_Intr_System(&Intc);
  48. Setup_Intr_Exception(&Intc);
  49. //定义一个网卡
  50. netif = &server_netif;
  51. /*两种方案实现对网卡ip、子网掩码、以及网关*/
  52. //方案1
  53. IP4_ADDR(&ipaddr, 192, 168, 1, 10);
  54. IP4_ADDR(&netmask, 255, 255, 255, 0);
  55. IP4_ADDR(&gw, 192, 168, 1, 1);
  56. //方案2
  57. // assign_default_ip(&(netif->ip_addr), &(netif->netmask), &(netif->gw));
  58. //初始化协议栈相关核心
  59. lwip_init(); //初始化lwIP库
  60. /* 添加网络接口并将其设置为默认接口 */
  61. if (!xemac_add(netif, &ipaddr, &netmask, &gw, mac_ethernet_address, XPAR_XEMACPS_0_BASEADDR)) {
  62. xil_printf("Error adding N/W interface\r\n");
  63. return -1;
  64. }
  65. netif_set_default(netif);
  66. netif_set_up(netif); //启动网络
  67. user_udp_init(); //初始化UDP
  68. while(1)
  69. {
  70. /* 将MAC队列中的包传输的LwIP/IP栈中 */
  71. xemacif_input(netif);
  72. sleep(0.1);
  73. udp_printf();
  74. }
  75. return 0;
  76. }

 

  1. /*
  2. * sys_intr.c
  3. *
  4. * Created on: 2020年1月16日
  5. * Author: Scottar
  6. */
  7. #include "sys_intr.h"
  8. //---------------------------------------------------------
  9. // 设置中断异常
  10. //---------------------------------------------------------
  11. void Setup_Intr_Exception(XScuGic * IntcInstancePtr)
  12. {
  13. Xil_ExceptionInit();
  14. Xil_ExceptionRegisterHandler(XIL_EXCEPTION_ID_INT,
  15. (Xil_ExceptionHandler)XScuGic_InterruptHandler,
  16. (void *)IntcInstancePtr);
  17. Xil_ExceptionEnable();
  18. }
  19. //---------------------------------------------------------
  20. // 初始化中断系统
  21. //---------------------------------------------------------
  22. int Init_Intr_System(XScuGic * IntcInstancePtr)
  23. {
  24. int Status;
  25. XScuGic_Config *IntcConfig;
  26. IntcConfig = XScuGic_LookupConfig(INTC_DEVICE_ID);
  27. if (NULL == IntcConfig) {
  28. return XST_FAILURE;
  29. }
  30. Status = XScuGic_CfgInitialize(IntcInstancePtr, IntcConfig,
  31. IntcConfig->CpuBaseAddress);
  32. if (Status != XST_SUCCESS) {
  33. return XST_FAILURE;
  34. }
  35. return XST_SUCCESS;
  36. }

 

  1. /*
  2. * sys_intr.h
  3. *
  4. * Created on: 2020年1月16日
  5. * Author: Scottar
  6. */
  7. #ifndef SYS_INTR_H_
  8. #define SYS_INTR_H_
  9. #include "xparameters.h"
  10. #include "xil_exception.h"
  11. #include "xdebug.h"
  12. #include "xscugic.h"
  13. #define INTC_DEVICE_ID XPAR_SCUGIC_SINGLE_DEVICE_ID
  14. int Init_Intr_System(XScuGic * IntcInstancePtr);
  15. void Setup_Intr_Exception(XScuGic * IntcInstancePtr);
  16. #endif /* SYS_INTR_H_ */

 

  1. #include "user_udp.h"
  2. //---------------------------------------------------------
  3. // 变量定义
  4. //---------------------------------------------------------
  5. struct udp_pcb *connected_pcb = NULL;
  6. static struct pbuf *pbuf_to_be_sent = NULL;
  7. char send_buff[10] = "HelloWorld"; //待发送字符
  8. struct ip4_addr ipaddr;
  9. static unsigned local_port = 5002; //本地端口
  10. static unsigned remote_port = 8080; //远程端口
  11. //---------------------------------------------------------
  12. // UDP连接初始化函数
  13. //---------------------------------------------------------
  14. int user_udp_init(void)
  15. {
  16. struct udp_pcb *pcb;
  17. err_t err;
  18. /* 创建UDP控制块 */
  19. pcb = udp_new();
  20. if (!pcb) {
  21. xil_printf("Error Creating PCB.\r\n");
  22. return -1;
  23. }
  24. /* 绑定本地端口 */
  25. err = udp_bind(pcb, IP_ADDR_ANY, local_port);
  26. if (err != ERR_OK) {
  27. xil_printf("Unable to bind to port %d\r\n", local_port);
  28. return -2;
  29. }
  30. /* 设置远程地址 */
  31. IP4_ADDR(&ipaddr, 192, 168, 1, 100);
  32. // IP4_ADDR(&ipaddr, 192, 168, 1, 101);
  33. // IP4_ADDR(&ipaddr, 115, 156, 162, 123);
  34. // IP4_ADDR(&ipaddr, 115, 156, 162, 76);
  35. connected_pcb = pcb;
  36. /* 申请pbuf资源 */
  37. pbuf_to_be_sent = pbuf_alloc(PBUF_TRANSPORT, 10, PBUF_ROM);
  38. memset(pbuf_to_be_sent->payload, 0, 10);
  39. memcpy(pbuf_to_be_sent->payload, (u8 *)send_buff, 10);
  40. return 0;
  41. }
  42. //---------------------------------------------------------
  43. // UDP发送数据函数
  44. //---------------------------------------------------------
  45. void udp_printf(void)
  46. {
  47. err_t err;
  48. struct udp_pcb *tpcb = connected_pcb;
  49. if (!tpcb) {
  50. xil_printf("error connect.\r\n");
  51. }
  52. /* 发送字符串 */
  53. err = udp_sendto(tpcb, pbuf_to_be_sent, &ipaddr, remote_port);
  54. if (err != ERR_OK) {
  55. // xil_printf("Error on udp send : %d\r\n", err);
  56. return;
  57. }
  58. }
  1. /*
  2. * usr_udp.h
  3. *
  4. * Created on: 2020年1月16日
  5. * Author: Scottar
  6. */
  7. #ifndef SRC_USER_UDP_H_
  8. #define SRC_USER_UDP_H_
  9. #include "lwip/err.h"
  10. #include "lwip/udp.h"
  11. #include "lwip/init.h"
  12. #include "lwipopts.h"
  13. #include "lwip/err.h"
  14. #include "lwipopts.h"
  15. #include "netif/xadapter.h"
  16. #include "xil_printf.h"
  17. int user_udp_init(void);
  18. void udp_printf(void);
  19. #endif /* SRC_USER_UDP_H_ */

 

 

参考:

https://www.xilinx.com/support/documentation/application_notes/xapp1026.pdf

 

 

 

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小小林熬夜学编程/article/detail/527956
推荐阅读
相关标签
  

闽ICP备14008679号