mirror of https://github.com/ARMmbed/mbed-os.git
37 lines
1.2 KiB
Python
37 lines
1.2 KiB
Python
"""
|
|
mbed SDK
|
|
Copyright (c) 2011-2016 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.
|
|
|
|
Author: Przemyslaw Wirkus <Przemyslaw.Wirkus@arm.com>
|
|
"""
|
|
|
|
from mbed_os_tools.test.mbed_target_info import (
|
|
TARGET_INFO_MAPPING,
|
|
TARGET_TOOLCAHINS,
|
|
get_mbed_target_call_yotta_target,
|
|
parse_yotta_json_for_build_name,
|
|
get_yotta_target_from_local_config,
|
|
get_mbed_target_from_current_dir,
|
|
parse_yotta_target_cmd_output,
|
|
get_mbed_targets_from_yotta_local_module,
|
|
parse_mbed_target_from_target_json,
|
|
get_mbed_targets_from_yotta,
|
|
parse_yotta_search_cmd_output,
|
|
add_target_info_mapping,
|
|
get_mbed_clasic_target_info,
|
|
get_binary_type_for_platform,
|
|
get_platform_property,
|
|
)
|