2015-11-24 09:42 AM
Hi,
I'm porting SPL and ETH to stm32f7 for use in my project, but I've no idea about USB. I put library source code on gitlab, you can get it herehttps://gitlab.com/caesar-lab/stm32f7-legacy-library.git
I test it on stm32f746g discovery, but I've not yet test all function. I do not confirm whichall function will works perfectly. How to use: In your project, define ''USE_HAL_DRIVER'' symbol as before. In ''stm32f7xx_hal_conf.h'' replace all HAL includes section with below:#include ''misc.h''
#include ''stm32f7xx_adc.h''
#include ''stm32f7xx_can.h''
#include ''stm32f7xx_cec.h''
#include ''stm32f7xx_crc.h''
#include ''stm32f7xx_cryp.h''
#include ''stm32f7xx_dac.h''
#include ''stm32f7xx_dbgmcu.h''
#include ''stm32f7xx_dcmi.h''
#include ''stm32f7xx_dma.h''
#include ''stm32f7xx_dma2d.h''
#include ''stm32f7xx_exti.h''
#include ''stm32f7xx_flash.h''
#include ''stm32f7xx_fmc.h''
#include ''stm32f7xx_gpio.h''
#include ''stm32f7xx_hash.h''
#include ''stm32f7xx_i2c.h''
#include ''stm32f7xx_iwdg.h''
#include ''stm32f7xx_ltdc.h''
#include ''stm32f7xx_lptim.h''
#include ''stm32f7xx_pwr.h''
#include ''stm32f7xx_qspi.h''
#include ''stm32f7xx_rcc.h''
#include ''stm32f7xx_rng.h''
#include ''stm32f7xx_rtc.h''
#include ''stm32f7xx_sai.h''
#include ''stm32f7xx_sdmmc.h''
#include ''stm32f7xx_spdifrx.h''
#include ''stm32f7xx_spi.h''
#include ''stm32f7xx_syscfg.h''
#include ''stm32f7xx_tim.h''
#include ''stm32f7xx_usart.h''
#include ''stm32f7xx_wwdg.h''
Please excuse my poor english.