Skip to content

Commit ee2d4f3

Browse files
committed
Update Logicrom Arduino and flasher package
Signed-off-by: Ajay Bhargav <[email protected]>
1 parent 3cc584f commit ee2d4f3

File tree

2 files changed

+14
-14
lines changed

2 files changed

+14
-14
lines changed

builder/framework/siwiduino.py renamed to builder/framework/arduino.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -159,8 +159,8 @@ def gen_fota_file(target, source, env):
159159
],
160160

161161
CPPPATH=[
162-
join(FRAMEWORK_DIR, "cores", board.get("build.core"), "siwisdk", "include"),
163-
join(FRAMEWORK_DIR, "cores", board.get("build.core"), "siwisdk", "include", "ril"),
162+
join(FRAMEWORK_DIR, "cores", board.get("build.core"), "logicromsdk", "include"),
163+
join(FRAMEWORK_DIR, "cores", board.get("build.core"), "logicromsdk", "include", "ril"),
164164
join(FRAMEWORK_DIR, "cores", board.get("build.core"))
165165
],
166166

@@ -178,7 +178,7 @@ def gen_fota_file(target, source, env):
178178
],
179179

180180
LIBPATH=[
181-
join(FRAMEWORK_DIR, "cores", board.get("build.core"), "siwisdk", "lib")
181+
join(FRAMEWORK_DIR, "cores", board.get("build.core"), "logicromsdk", "lib")
182182
],
183183

184184
LIBS=[
@@ -219,7 +219,7 @@ def gen_fota_file(target, source, env):
219219
],
220220

221221
LIBS=[
222-
"siwisdk",
222+
"logicrom",
223223
],
224224
)
225225
else:
@@ -248,7 +248,7 @@ def gen_fota_file(target, source, env):
248248
],
249249

250250
LIBS=[
251-
"siwinbiotsdk",
251+
"logicromnbiot",
252252
],
253253
)
254254

@@ -267,7 +267,7 @@ def gen_fota_file(target, source, env):
267267

268268
def load_siwilib_debug():
269269
for i, libs in enumerate(env["LIBS"]):
270-
if libs.startswith("siwisdk") or libs.startswith("siwinbiot"):
270+
if libs.startswith("logicrom") or libs.startswith("logicromnbiot"):
271271
env["LIBS"][i] = libs + "_debug"
272272

273273

platform.json

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -34,10 +34,10 @@
3434
"title": "LOGICROM SDK"
3535
},
3636
"arduino": {
37-
"package": "framework-siwiduino",
38-
"script": "builder/framework/siwiduino.py",
39-
"description": "Arduino Wiring-based Framework For SiWi and Quectel Modules",
40-
"homepage": "https://github.com/siwiembedded/siwiduino",
37+
"package": "framework-logicromarduino",
38+
"script": "builder/framework/arduino.py",
39+
"description": "Arduino Wiring-based Framework For LOGICROM Platform",
40+
"homepage": "https://github.com/waybyte/Arduino_LogicROM",
4141
"title": "Arduino Framework"
4242
}
4343
},
@@ -51,15 +51,15 @@
5151
"type": "framework",
5252
"version": "~0.8.0"
5353
},
54-
"framework-siwiduino": {
54+
"framework-logicromarduino": {
5555
"type": "framework",
5656
"optional": true,
57-
"version": "~0.4.0"
57+
"version": "~0.5.0"
5858
},
59-
"tool-siwiflasher": {
59+
"tool-logicromflasher": {
6060
"type": "uploader",
6161
"optional": true,
62-
"version": "~2.2.0"
62+
"version": "~2.3.0"
6363
}
6464
},
6565
"pythonPackages": {

0 commit comments

Comments
 (0)