Jump to content

BenjyC

Members
  • Posts

    3
  • Joined

  • Last visited

Everything posted by BenjyC

  1. For the gdisp drivers, gdisp_lld_STM32LTDC.c contains an error on line 383, should read: DMA2D->OPFCCR = OPFCCR_RGB888; That said, trying to switch to RGB888 just displays a black screen on the STM32F7-DISCO, is this supported?
  2. Thanks very much for your support, I've finally built the project and got it running on my device. In summary, After using cygwins version of mkdir my steps to compile your bitbucket project on eclipse were: Add the following inclusions to the project as CShark said: [ugfx root directory] ${ProjDirPath}\STM32F7xx_HAL_Driver\Inc} ${ProjDirPath}\ Edit the Makefile to replace HAL to STMHAL, and add a path as vlad said: INCPATH = $(STMHAL)/Inc Change ugfx/tools/gmake_scripts/cpu_stm32m7.mk so that: SRCFLAGS += -mcpu=cortex-m7 -falign-functions=16 -mfloat-abi=hard -mfpu=fpv5-sp-d16 -fsingle-precision-constant LDFLAGS += -mcpu=cortex-m7 -falign-functions=16 -mfloat-abi=hard -mfpu=fpv5-sp-d16 -fsingle-precision-constant
  3. Hello! I'm also trying to use an Windows Eclipse environment, I've pointed to the makefile (I think) but on trying to build the project you've designed I recieve the following error: The system cannot find the path specified. The syntax of the command is incorrect. make: *** [builddirs] Error 1 I know this happens because this IDE needs to use mkdir [path]\[subpath] instead of mkdir -p [path]/[subpath] On replacing / with \ in compiler_gcc.mk only I get the following error: make: *** No rule to make target `.build\obj\main.o', needed by `.build\.elf'. Stop. Am I making life difficult for myself? Where am I going astray?
×
×
  • Create New...