## ## This file is part of the libopencm3 project. ## ## Copyright (C) 2009 Uwe Hermann ## ## This library is free software: you can redistribute it and/or modify ## it under the terms of the GNU Lesser General Public License as published by ## the Free Software Foundation, either version 3 of the License, or ## (at your option) any later version. ## ## This library is distributed in the hope that it will be useful, ## but WITHOUT ANY WARRANTY; without even the implied warranty of ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ## GNU Lesser General Public License for more details. ## ## You should have received a copy of the GNU Lesser General Public License ## along with this library. If not, see . ## DEFS += -DUSE_OPENCM3_API=0 #-DCON_BAUDRATE=38400 DEFS += -DDEBUG_IRMP_TIMER_INT=1 BINARY = irmp-main OBJS += serial.o timer.o IRMP_DIR = irmp OBJS += $(IRMP_DIR)/irmp.o DEFS += -I$(IRMP_DIR) DEFS += -DF_INTERRUPTS=15000 -DIRMP_PROTOCOL_NAMES=1 DEVICE = stm32f103c8t6 OPENCM3_DIR = libopencm3 include libopencm3.target.mk