Merge pull request #113 from romainreignier/fix_ch_dependency

Fix ch dependency.
This commit is contained in:
Uladzimir Pylinski 2017-03-01 21:52:33 +03:00 committed by GitHub
commit 97aaabeedd
4 changed files with 3 additions and 5 deletions

View File

@ -19,7 +19,6 @@
* @brief DMA2D/Chrom-ART driver.
*/
#include "ch.h"
#include "hal.h"
#include "hal_stm32_dma2d.h"

View File

@ -19,7 +19,6 @@
* @brief LCD-TFT Controller Driver.
*/
#include "ch.h"
#include "hal.h"
#include "hal_stm32_ltdc.h"

View File

@ -86,7 +86,7 @@ endif
PROJECT = ch
# Imported source files and paths
CHIBIOS = ../../../../../ChibiOS
CHIBIOS = ../../../../../ChibiOS-RT
CHIBIOS_CONTRIB = $(CHIBIOS)/../ChibiOS-Contrib
# Startup files.
include $(CHIBIOS)/os/common/startup/ARMCMx/compilers/GCC/mk/startup_stm32f0xx.mk

View File

@ -175,8 +175,8 @@ MCU = cortex-m7
#TRGT = arm-elf-
TRGT = arm-none-eabi-
CC = ccache $(TRGT)gcc
CPPC = ccache $(TRGT)g++
CC = $(TRGT)gcc
CPPC = $(TRGT)g++
# Enable loading with g++ only if you need C++ runtime support.
# NOTE: You can use C++ even without C++ support if you are careful. C++
# runtime support makes code size explode.