From 6085905658b8ae56b7bc9cbca63ba3b33c72916c Mon Sep 17 00:00:00 2001 From: Brian Daniels Date: Fri, 9 Dec 2016 12:47:17 -0600 Subject: [PATCH] Renames i2c_api.c for STM32F1 targets to fix IAR exporter. The IAR build system does not allow two files to have the same name. This renames the i2c_api.c file for the STM32F1 family to i2c_api_stm32f1.c to avoid this issue. The common i2c_api.c file shared among all ST targets is not actually used for STM32F1 targets as it protected with an #ifdef guard. --- .../TARGET_STM/TARGET_STM32F1/{i2c_api.c => i2c_api_stm32f1.c} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename targets/TARGET_STM/TARGET_STM32F1/{i2c_api.c => i2c_api_stm32f1.c} (100%) diff --git a/targets/TARGET_STM/TARGET_STM32F1/i2c_api.c b/targets/TARGET_STM/TARGET_STM32F1/i2c_api_stm32f1.c similarity index 100% rename from targets/TARGET_STM/TARGET_STM32F1/i2c_api.c rename to targets/TARGET_STM/TARGET_STM32F1/i2c_api_stm32f1.c