Skip to content

Commit a59aefc

Browse files
U-owner-PC\ownerU-owner-PC\owner
authored andcommitted
added SEMTECH_LORA915 to python scripts
1 parent 15b1989 commit a59aefc

File tree

5 files changed

+15
-0
lines changed

5 files changed

+15
-0
lines changed

workspace_tools/export/coide.py

100644100755
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,7 @@ class CoIDE(Exporter):
4848
'DISCO_F429ZI',
4949
'MTS_MDOT_F405RG',
5050
'MTS_MDOT_F411RE',
51+
'SEMTECH_LORA915',
5152
]
5253

5354
# seems like CoIDE currently supports only one type

workspace_tools/export/gccarm.py

100644100755
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,7 @@ class GccArm(Exporter):
7676
'SEEED_TINY_BLE',
7777
'DISCO_F401VC',
7878
'DELTA_DFCM_NNN40',
79+
'SEMTECH_LORA915',
7980
]
8081

8182
DOT_IN_RELATIVE_PATH = True

workspace_tools/export/iar.py

100644100755
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,7 @@ class IAREmbeddedWorkbench(Exporter):
5858
'MTS_MDOT_F411RE',
5959
'MTS_DRAGONFLY_F411RE',
6060
'NRF51822',
61+
'SEMTECH_LORA915',
6162
]
6263

6364
def generate(self):

workspace_tools/export/uvision4.py

100644100755
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,7 @@ class Uvision4(Exporter):
7070
'SEEED_TINY_BLE',
7171
'LPC11U37H_401',
7272
'DELTA_DFCM_NNN40',
73+
'SEMTECH_LORA915',
7374
]
7475

7576
USING_MICROLIB = [
@@ -93,6 +94,7 @@ class Uvision4(Exporter):
9394
'LPC11U35_501',
9495
'KL05Z',
9596
'LPC11U37H_401',
97+
'SEMTECH_LORA915',
9698
]
9799

98100
FILE_TYPES = {

workspace_tools/targets.py

100644100755
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -677,6 +677,15 @@ def __init__(self):
677677
self.supported_toolchains = ["ARM", "uARM", "GCC_ARM", "IAR"]
678678
self.default_toolchain = "uARM"
679679

680+
class SEMTECH_LORA915(Target):
681+
def __init__(self):
682+
Target.__init__(self)
683+
self.core = "Cortex-M3"
684+
self.extra_labels = ['STM', 'STM32L1', 'STM32L152RC']
685+
self.supported_toolchains = ["ARM", "uARM", "IAR", "GCC_ARM"]
686+
self.default_toolchain = "uARM"
687+
self.detect_code = ["9999"]
688+
680689
class MTS_DRAGONFLY_F411RE(Target):
681690
def __init__(self):
682691
Target.__init__(self)
@@ -1020,6 +1029,7 @@ def program_cycle_s(self):
10201029
DISCO_L053C8(),
10211030
MTS_MDOT_F405RG(),
10221031
MTS_MDOT_F411RE(),
1032+
SEMTECH_LORA915(),
10231033
MTS_DRAGONFLY_F411RE(),
10241034
DISCO_F401VC(),
10251035
UBLOX_C029(), # STM32F439

0 commit comments

Comments
 (0)