From 107fc9fce3a7ce9ecdcc71bfd4d1bfcbe093b6db Mon Sep 17 00:00:00 2001 From: Andrew Chong Date: Wed, 8 Jan 2020 15:38:23 +0800 Subject: [PATCH] Removed PortIn/Out/InOut from Samsung target for now. --- .../TARGET_SIDK_S5JS100/port_api.c | 74 ------------------- targets/targets.json | 3 - 2 files changed, 77 deletions(-) delete mode 100644 targets/TARGET_Samsung/TARGET_SIDK_S5JS100/port_api.c diff --git a/targets/TARGET_Samsung/TARGET_SIDK_S5JS100/port_api.c b/targets/TARGET_Samsung/TARGET_SIDK_S5JS100/port_api.c deleted file mode 100644 index 173d9fba28..0000000000 --- a/targets/TARGET_Samsung/TARGET_SIDK_S5JS100/port_api.c +++ /dev/null @@ -1,74 +0,0 @@ -/* mbed Microcontroller Library - * Copyright (c) 2006-2018 ARM Limited - * - * Licensed 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 - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * 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. - */ -/**************************************************************************** - * - * Copyright 2019 Samsung Electronics All Rights Reserved. - * SPDX-License-Identifier: Apache-2.0 - * - * Licensed 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 - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * 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. - * - ****************************************************************************/ -/* @file : port_api.c - * @brief : GPIO port API source code - * @date : June 2019 - * - * @note : Add chip dependent feature and control hardware GPIO port - * - */ -#include "port_api.h" -#include "pinmap.h" -#include "gpio_api.h" - -PinName port_pin(PortName port, int pin_n) -{ - return (PinName)((port << PORT_SHIFT) | pin_n); -} - -void port_init(port_t *obj, PortName port, int mask, PinDirection dir) -{ - -} - -void port_mode(port_t *obj, PinMode mode) -{ - -} - -void port_dir(port_t *obj, PinDirection dir) -{ - -} - -void port_write(port_t *obj, int value) -{ - *obj->reg_in = value; -} - -int port_read(port_t *obj) -{ - return (*obj->reg_in); -} - diff --git a/targets/targets.json b/targets/targets.json index ead4835cd3..f00c39ad7f 100644 --- a/targets/targets.json +++ b/targets/targets.json @@ -14186,9 +14186,6 @@ "macros": ["CMSDK_CM7", "MBED_MPU_CUSTOM", "CMSIS_NVIC_VIRTUAL", "MBEDTLS_CONFIG_HW_SUPPORT"], "device_has": [ "INTERRUPTIN", - "PORTIN", - "PORTINOUT", - "PORTOUT", "USTICKER", "SERIAL", "SLEEP",