stm32l0: Add Clock Recovery System to build

This commit is contained in:
Karl Palsson 2015-10-03 18:14:50 +00:00
parent d67aec1cc8
commit 63cfc6932a
2 changed files with 3 additions and 0 deletions

View File

@ -22,6 +22,8 @@
#if defined(STM32F0)
# include <libopencm3/stm32/common/crs_common_all.h>
#elif defined(STM32L0)
# include <libopencm3/stm32/common/crs_common_all.h>
#else
# error "stm32 family not defined or not supported for this peripheral"
#endif

View File

@ -38,6 +38,7 @@ ARFLAGS = rcs
OBJS = gpio.o rcc.o
OBJS += gpio_common_all.o gpio_common_f0234.o rcc_common_all.o
OBJS += crs_common_all.o
VPATH += ../../usb:../:../../cm3:../common