How to incorporate UDP & TFTP Client using Raw LwIP AOI
Trying to figure out how to add UDP and TFTP to LwIP using the RawAPI
Trying to figure out how to add UDP and TFTP to LwIP using the RawAPI
Posted on February 26, 2018 at 10:02Hi,I am working on a nucleo STM32H7 and I am trying to communicate with a Hokuyo through USB. When I connect the device the init fails at some point in the usbh_cdc.c (USBH_CDC_InterfaceInit)In this function the...
Posted on June 23, 2018 at 06:45 The macro definition in the library file STM32Cube_FW_F4_V1.0/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h at line 6112has the original definition below: /** @brief Macro to get the I2S clock sour...
Posted on May 05, 2018 at 02:46Context. I using CubeMx on a STM32L462 with FreeRTOS (works fine). When enabled, MX_USB_DEVICE_Init() is added to the default FreeRTOS task to activate a USB channel which also works fine.. I have my USB channel set ...
Posted on December 14, 2017 at 08:16Code Generator using cubeMX for STM32F429 Disco1 HOST HID.Keyboard Behavior:When I connect Keyboard, It Shows that keyboard is connected. But If I press any key on keyboard. Immediately USB disconnected routines s...
Posted on October 28, 2016 at 17:45Hi all, We are trying to implement two CDC using an stm32l4. Both CDC works find with a win7 64 bits and also with Linux. We also get success using win7 32bit but only when we implement one CDC. We are using the l...
Posted on February 21, 2018 at 19:20Hi,I've successfully run a FreeRTOS program that use ADC + DMA in scan, continuous, circular mode and I successfully can average in HAL_ADC_ConvCpltCallback().Now I'd still like to use DMA to fill a buffer of 3 ch...
Posted on April 18, 2018 at 11:23I'm trying to use the I2C slave in DMA mode.uint8_t aRxBuffer;HAL_I2C_Slave_Receive_DMA(&hi2c1, (uint8_t*)&aRxBuffer, 1);But HAL_I2C_Slave_Receive_DMA returns HAL_BUSY.At the same time I have no other devices on the ...
Posted on September 12, 2017 at 23:36Hi,I'm currently trying to find an example project for that run PPP on LwIP with STM32F407 based card with sim800H GSM modem.Best Regards.#ppp #gsm-modem #lwip
Posted on November 12, 2014 at 08:42Hello,I am interested to make USB HID HOST which can communicate with custom hid device instead of mice or keyboard.For that I have to send data to that custom hid device.I have used below fuction for dataoutUSBH_...