Browse Source

stm32l0: Add Clock Recovery System to build

pull/467/merge
Karl Palsson 9 years ago
parent
commit
63cfc6932a
  1. 2
      include/libopencm3/stm32/crs.h
  2. 1
      lib/stm32/l0/Makefile

2
include/libopencm3/stm32/crs.h

@ -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

1
lib/stm32/l0/Makefile

@ -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

Loading…
Cancel
Save