mirror of https://github.com/ARMmbed/mbed-os.git
Reintroduce mts_dot combine_bins.
parent
422931208c
commit
6ee9b161e3
|
@ -500,11 +500,21 @@ class MTSCode(object):
|
|||
os.remove(binf)
|
||||
os.rename(target, binf)
|
||||
|
||||
@staticmethod
|
||||
def combine_bins_mts_dot(t_self, resources, elf, binf):
|
||||
"""A hook for the MTS MDOT"""
|
||||
MTSCode._combine_bins_helper("MTS_MDOT_F411RE", binf)
|
||||
|
||||
@staticmethod
|
||||
def combine_bins_mts_dragonfly(t_self, resources, elf, binf):
|
||||
"""A hoof for the MTS Dragonfly"""
|
||||
MTSCode._combine_bins_helper("MTS_DRAGONFLY_F411RE", binf)
|
||||
|
||||
@staticmethod
|
||||
def combine_bins_mtb_mts_dragonfly(t_self, resources, elf, binf):
|
||||
"""A hook for the MTB MTS Dragonfly"""
|
||||
MTSCode._combine_bins_helper("MTB_MTS_DRAGONFLY", binf)
|
||||
|
||||
|
||||
class LPC4088Code(object):
|
||||
"""Code specific to the LPC4088"""
|
||||
|
@ -621,6 +631,14 @@ class MCU_NRF51Code(object):
|
|||
binh.write_hex_file(fileout, write_start_addr=False)
|
||||
|
||||
|
||||
class NCS36510TargetCode(object):
|
||||
@staticmethod
|
||||
def ncs36510_addfib(t_self, resources, elf, binf):
|
||||
from tools.targets.NCS import add_fib_at_start
|
||||
print("binf ", binf)
|
||||
add_fib_at_start(binf[:-4])
|
||||
|
||||
|
||||
class RTL8195ACode(object):
|
||||
"""RTL8195A Hooks"""
|
||||
@staticmethod
|
||||
|
|
Loading…
Reference in New Issue