2015-02-13 17:30:06 +01:00
|
|
|
############################################################################
|
|
|
|
# drivers/timers/Make.defs
|
|
|
|
#
|
2021-03-04 07:10:42 +01:00
|
|
|
# Licensed to the Apache Software Foundation (ASF) under one or more
|
|
|
|
# contributor license agreements. See the NOTICE file distributed with
|
|
|
|
# this work for additional information regarding copyright ownership. The
|
|
|
|
# ASF licenses this file to you under the Apache License, Version 2.0 (the
|
|
|
|
# "License"); you may not use this file except in compliance with the
|
|
|
|
# License. You may obtain a copy of the License at
|
2015-02-13 17:30:06 +01:00
|
|
|
#
|
2021-03-04 07:10:42 +01:00
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
2015-02-13 17:30:06 +01:00
|
|
|
#
|
2021-03-04 07:10:42 +01:00
|
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
|
|
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
|
|
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
|
|
# License for the specific language governing permissions and limitations
|
|
|
|
# under the License.
|
2015-02-13 17:30:06 +01:00
|
|
|
#
|
|
|
|
############################################################################
|
|
|
|
|
|
|
|
# Include timer drivers
|
|
|
|
|
|
|
|
ifeq ($(CONFIG_WATCHDOG),y)
|
|
|
|
CSRCS += watchdog.c
|
|
|
|
TMRDEPPATH = --dep-path timers
|
|
|
|
TMRVPATH = :timers
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifeq ($(CONFIG_TIMER),y)
|
|
|
|
CSRCS += timer.c
|
|
|
|
TMRDEPPATH = --dep-path timers
|
|
|
|
TMRVPATH = :timers
|
|
|
|
endif
|
|
|
|
|
2018-08-27 19:55:30 +02:00
|
|
|
ifeq ($(CONFIG_TIMER_ARCH),y)
|
|
|
|
CSRCS += arch_timer.c
|
|
|
|
TMRDEPPATH = --dep-path timers
|
|
|
|
TMRVPATH = :timers
|
|
|
|
endif
|
|
|
|
|
2016-08-12 18:40:07 +02:00
|
|
|
ifeq ($(CONFIG_ONESHOT),y)
|
|
|
|
CSRCS += oneshot.c
|
|
|
|
TMRDEPPATH = --dep-path timers
|
|
|
|
TMRVPATH = :timers
|
|
|
|
endif
|
|
|
|
|
2018-08-27 19:55:30 +02:00
|
|
|
ifeq ($(CONFIG_ALARM_ARCH),y)
|
|
|
|
CSRCS += arch_alarm.c
|
|
|
|
TMRDEPPATH = --dep-path timers
|
|
|
|
TMRVPATH = :timers
|
|
|
|
endif
|
|
|
|
|
2015-11-19 21:54:30 +01:00
|
|
|
ifeq ($(CONFIG_RTC_DSXXXX),y)
|
2015-11-17 21:07:55 +01:00
|
|
|
CSRCS += ds3231.c
|
|
|
|
TMRDEPPATH = --dep-path timers
|
|
|
|
TMRVPATH = :timers
|
|
|
|
endif
|
|
|
|
|
2015-11-21 00:36:10 +01:00
|
|
|
ifeq ($(CONFIG_RTC_PCF85263),y)
|
|
|
|
CSRCS += pcf85263.c
|
|
|
|
TMRDEPPATH = --dep-path timers
|
|
|
|
TMRVPATH = :timers
|
|
|
|
endif
|
|
|
|
|
2019-01-08 20:04:50 +01:00
|
|
|
ifeq ($(CONFIG_RTC_MCP794XX),y)
|
|
|
|
CSRCS += mcp794xx.c
|
2019-01-07 00:32:02 +01:00
|
|
|
TMRDEPPATH = --dep-path timers
|
|
|
|
TMRVPATH = :timers
|
|
|
|
endif
|
|
|
|
|
2022-02-24 07:43:33 +01:00
|
|
|
ifeq ($(CONFIG_RTC_RX8010SJ),y)
|
|
|
|
CSRCS += rx8010.c
|
|
|
|
TMRDEPPATH = --dep-path timers
|
|
|
|
TMRVPATH = :timers
|
|
|
|
endif
|
|
|
|
|
2019-11-02 18:30:33 +01:00
|
|
|
ifeq ($(CONFIG_RTC_RPMSG),y)
|
|
|
|
CSRCS += rpmsg_rtc.c
|
|
|
|
TMRDEPPATH = --dep-path timers
|
|
|
|
TMRVPATH = :timers
|
|
|
|
endif
|
|
|
|
|
2018-08-27 19:55:30 +02:00
|
|
|
ifeq ($(CONFIG_RTC_ARCH),y)
|
|
|
|
CSRCS += arch_rtc.c
|
|
|
|
TMRDEPPATH = --dep-path timers
|
|
|
|
TMRVPATH = :timers
|
|
|
|
endif
|
|
|
|
|
2015-02-13 17:30:06 +01:00
|
|
|
ifeq ($(CONFIG_RTC_DRIVER),y)
|
|
|
|
CSRCS += rtc.c
|
|
|
|
TMRDEPPATH = --dep-path timers
|
|
|
|
TMRVPATH = :timers
|
|
|
|
endif
|
|
|
|
|
2015-04-02 21:00:10 +02:00
|
|
|
ifeq ($(CONFIG_TIMERS_CS2100CP),y)
|
|
|
|
CSRCS += cs2100-cp.c
|
|
|
|
TMRDEPPATH = --dep-path timers
|
|
|
|
TMRVPATH = :timers
|
|
|
|
endif
|
|
|
|
|
2019-09-02 15:53:52 +02:00
|
|
|
ifeq ($(CONFIG_PWM),y)
|
|
|
|
CSRCS += pwm.c
|
|
|
|
TMRDEPPATH = --dep-path timers
|
|
|
|
TMRVPATH = :timers
|
|
|
|
endif
|
|
|
|
|
2022-06-26 14:00:38 +02:00
|
|
|
ifeq ($(CONFIG_CAPTURE),y)
|
|
|
|
CSRCS += capture.c
|
|
|
|
TMRDEPPATH = --dep-path timers
|
|
|
|
TMRVPATH = :timers
|
|
|
|
endif
|
|
|
|
|
2015-02-13 17:30:06 +01:00
|
|
|
# Include timer build support (if any were selected)
|
|
|
|
|
|
|
|
DEPPATH += $(TMRDEPPATH)
|
|
|
|
VPATH += $(TMRVPATH)
|