STM32 ETHERNET #7 NETCONN UDP SERVER || FREERTOS || LWIP

Поделиться
HTML-код
  • Опубликовано: 14 окт 2024

Комментарии • 24

  • @VimalKumar-fh5eu
    @VimalKumar-fh5eu 2 года назад

    Very Nice series. Can we get a CoAP implementation on STM32?

  • @clintcorbin3429
    @clintcorbin3429 Год назад

    After working my way up to Ethernet #7, I can't seem to get it to respond to a ping on my DISCO F769NI board (same board I used for all the other ethernet tests). It is not hard faulting as a pause shows it is at "configASSERT( ( portAIRCR_REG & portPRIORITY_GROUP_MASK )

  • @manisrinivas_hyd
    @manisrinivas_hyd 2 года назад

    Very great videos,thank u so much

  • @abhinavks2595
    @abhinavks2595 2 года назад

    Very informative Video, I was able to get the udp sever with FREERTOS working. But now i face a problem when i generate the Code from TouchGFX tool ,As i am in need to use GUI and also the Udpsever, when i follow the same procedure as mentioned in the video after creating the GUI from touch GFX the Ping to the Ip is and udp server does not respond at all.
    Can you please guide me if their is any other procedure to be followed to get this set up working.
    Thanks in Advance.

  • @vovanstarasov8212
    @vovanstarasov8212 Год назад

    The server only works well if set fixed the clients port. If you try to connect with another client or the client port is automatically selected by the OS, then the second connection will not work :(
    can this be solved somehow?

  • @hogo750
    @hogo750 2 года назад

    God bless you ✌️😃

  • @TheIvanDM
    @TheIvanDM 2 года назад

    super! excellent!

  • @cihane.8713
    @cihane.8713 2 года назад

    Thanks for video. Are you going to share a video about dynamic http server ?

  • @mousaashpaz7845
    @mousaashpaz7845 2 года назад

    Hi
    Create job. Thank you.
    Is it possible fro you to make a video about Mongoose(Embedded Web Server)?

  • @SachinPatel-o4h
    @SachinPatel-o4h Год назад

    I would not able to get a ping response in STM32F756ZG in the default task. I got a hard faults when I am using shown configuration.Could you help me to solve this issue.

  • @Slemi
    @Slemi 2 года назад

    Is it possible for you to show extensions for known file types in windows please?

  • @dhruvsharma6031
    @dhruvsharma6031 2 года назад

    i won't be able to get ping from controller in STM32H745 OS_Delay() function in default task keeps giving hard fault error. could you help me int it...

    • @sanghyeonpark7226
      @sanghyeonpark7226 Год назад +2

      I've had the same issue with STM32F767. Here is how I resolved it:
      (a) increase the defaultTask stack size from 128 to 256
      (b) change the FreeRTOS version from v2 to v1 (Interface: CMSIS_V1)
      (c) skip the memory allocation stuff for Cortex M7 in the video; just use the default setup in CubeIDE.

    • @MarcelK1997
      @MarcelK1997 Год назад

      @@sanghyeonpark7226 Many thanks! You have helped me so much!

  • @yigithansenvar
    @yigithansenvar 2 года назад

    Thanks for video
    Can we send any file(.txt) using with this server? If it is not possible how can i send file to stm32 development card?

    • @ControllersTech
      @ControllersTech  2 года назад

      yes you can send.. but you have to use the fatfs in STM32 to handle the file.

    • @yigithansenvar
      @yigithansenvar 2 года назад

      I am using a stm32f429zi and seeing the transferred file in terminal is enough for me. I think i don't need to use fats for this, but do i need to use tftp.h ?

    • @ControllersTech
      @ControllersTech  2 года назад

      Yes you can use the tftp.

  • @burakagca9450
    @burakagca9450 2 года назад

    I guess there is a problem with udpclient on RTOS source code. Because my nucleo board with STM32F767 doesn't receive any data from ethernet after sending data from hercules.exe few times. Anyone has the same issue?

    • @ControllersTech
      @ControllersTech  2 года назад

      Use rtos v1

    • @burakagca9450
      @burakagca9450 2 года назад

      Thanks for your quick reply, I have one more question , I tried implementing udp server on cmsis_v1 same way that I tried implementing cmsis_v2. However it didn't work on cmsis_v1. Function prototypes, variables etc. are all implemented the same as in the video. What could it be the problem?

    • @ControllersTech
      @ControllersTech  2 года назад

      Mail me the project.. or come on telegram

    • @sanghyeonpark7226
      @sanghyeonpark7226 Год назад

      I've had a similar issue. My STM32F767 replied to the message only nine times, then stopped working. The fix was to replace these two lines in the original code:
      pbuf_take(txBuf, smsg, len);
      buf->p = txBuf;
      with this:
      netbuf_ref(buf, smsg, len);
      Hope it helps.