Skip to content

Commit b5965d2

Browse files
committed
Change platform name from siwigsm to logicrom
logicrom platform is now managed by WAYBYTE Solutions Signed-off-by: Ajay Bhargav <[email protected]>
1 parent 43e33c4 commit b5965d2

File tree

13 files changed

+53
-53
lines changed

13 files changed

+53
-53
lines changed

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2020 SiWi Embedded Solutions Pvt. Ltd.
3+
Copyright (c) 2021 WAYBYTE Solutions
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

README.md

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,28 @@
1-
# SIWIGSM for Platformio
1+
# LOGICROM for Platformio
22

3-
![Examples](https://github.com/siwiembedded/platform-siwigsm/workflows/Examples/badge.svg)
3+
![Examples](https://github.com/waybyte/platform-logicrom/workflows/Examples/badge.svg)
44
[![Documentation Status](https://readthedocs.org/projects/siwisdk/badge/?version=latest)](https://siwisdk.readthedocs.io/en/latest/?badge=latest)
5-
[![Github Issues](https://img.shields.io/github/issues/siwiembedded/platform-siwigsm.svg)](http://github.com/siwiembedded/platform-siwigsm/issues)
6-
[![Github Releases](https://img.shields.io/github/release/siwiembedded/platform-siwigsm.svg)](https://github.com/siwiembedded/platform-siwigsm/releases)
7-
[![GitHub license](https://img.shields.io/badge/license-MIT-blue.svg)](https://github.com/siwiembedded/platform-siwigsm/blob/master/LICENSE)
5+
[![Github Issues](https://img.shields.io/github/issues/waybyte/platform-logicrom.svg)](http://github.com/waybyte/platform-logicrom/issues)
6+
[![Github Releases](https://img.shields.io/github/release/waybyte/platform-logicrom.svg)](https://github.com/waybyte/platform-logicrom/releases)
7+
[![GitHub license](https://img.shields.io/badge/license-MIT-blue.svg)](https://github.com/waybyte/platform-logicrom/blob/master/LICENSE)
88

99
## Installation
1010

1111
1. Install [Visual Studio Code](https://code.visualstudio.com/)
1212
2. Install [PlatformIO Extension for VSCode](https://platformio.org/platformio-ide)
13-
3. Install SiWi GSM Platform:
13+
3. Install LOGICROM Platform:
1414
* Open PlatformIO Home
1515
* Go to Platforms -> Advanced Installation
16-
* Paste repository link https://github.com/siwiembedded/platform-siwigsm.git
16+
* Paste repository link https://github.com/logicrom/platform-logicrom.git
1717
* Click Install
1818

1919
## Examples
2020

21-
* [gpio-blink](https://github.com/siwiembedded/platform-siwigsm/tree/master/examples/gpio-blink) - GPIO Toggle Example
22-
* [adc-example](https://github.com/siwiembedded/platform-siwigsm/tree/master/examples/adc-example) - ADC Read Example
23-
* [socket-example](https://github.com/siwiembedded/platform-siwigsm/tree/master/examples/socket-example) - TCP Socket example using RAW Socket APIs
24-
* [ssl-socket-example](https://github.com/siwiembedded/platform-siwigsm/tree/master/examples/ssl-socket-example) - SSL Socket example
25-
* [ssl-socket-clientauth](https://github.com/siwiembedded/platform-siwigsm/tree/master/examples/ssl-socket-clientauth) - SSL Socket example with client certificate authentication
21+
* [gpio-blink](https://github.com/waybyte/platform-logicrom/tree/master/examples/gpio-blink) - GPIO Toggle Example
22+
* [adc-example](https://github.com/waybyte/platform-logicrom/tree/master/examples/adc-example) - ADC Read Example
23+
* [socket-example](https://github.com/waybyte/platform-logicrom/tree/master/examples/socket-example) - TCP Socket example using RAW Socket APIs
24+
* [ssl-socket-example](https://github.com/waybyte/platform-logicrom/tree/master/examples/ssl-socket-example) - SSL Socket example
25+
* [ssl-socket-clientauth](https://github.com/waybyte/platform-logicrom/tree/master/examples/ssl-socket-clientauth) - SSL Socket example with client certificate authentication
2626

2727
## Resources
2828

builder/framework/siwiduino.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright 2020 SiWi Embedded Solutions Pvt. Ltd.
1+
# Copyright 2021 WAYBYTE Solutions
22
#
33
# SPDX-License-Identifier: MIT
44
#
@@ -92,9 +92,9 @@ def gen_fota_file(target, source, env):
9292
# 0x1c : Filesize
9393
# 0x4c : CRC16
9494
FOTA_Header = bytearray([
95-
0x53, 0x49, 0x57, 0x49, 0x5F, 0x41, 0x50, 0x50,
96-
0x5F, 0x46, 0x4F, 0x54, 0x41, 0x5F, 0x55, 0x50,
97-
0x44, 0x41, 0x54, 0x45, 0x00, 0x00, 0x01, 0x00,
95+
0x57, 0x41, 0x59, 0x42, 0x59, 0x54, 0x45, 0x5F,
96+
0x41, 0x50, 0x50, 0x5F, 0x46, 0x4F, 0x54, 0x41,
97+
0x50, 0x41, 0x43, 0x4B, 0x00, 0x00, 0x01, 0x00,
9898
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
9999
0x10, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0xFF,
100100
0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF,

builder/framework/siwisdk.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright 2020 SiWi Embedded Solutions Pvt. Ltd.
1+
# Copyright 2021 WAYBYTE Solutions
22
#
33
# SPDX-License-Identifier: MIT
44
#
@@ -88,9 +88,9 @@ def gen_fota_file(target, source, env):
8888
# 0x1c : Filesize
8989
# 0x4c : CRC16
9090
FOTA_Header = bytearray([
91-
0x53, 0x49, 0x57, 0x49, 0x5F, 0x41, 0x50, 0x50,
92-
0x5F, 0x46, 0x4F, 0x54, 0x41, 0x5F, 0x55, 0x50,
93-
0x44, 0x41, 0x54, 0x45, 0x00, 0x00, 0x01, 0x00,
91+
0x57, 0x41, 0x59, 0x42, 0x59, 0x54, 0x45, 0x5F,
92+
0x41, 0x50, 0x50, 0x5F, 0x46, 0x4F, 0x54, 0x41,
93+
0x50, 0x41, 0x43, 0x4B, 0x00, 0x00, 0x01, 0x00,
9494
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
9595
0x10, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0xFF,
9696
0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF,

builder/main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright 2020 SiWi Embedded Solutions Pvt. Ltd.
1+
# Copyright 2021 WAYBYTE Solutions
22
#
33
# SPDX-License-Identifier: MIT
44
#

examples/adc-example/readme.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,14 @@ How to build
33

44
1. Install `Visual Studio Code <https://code.visualstudio.com/>`_
55
2. Install `PlatformIO Extension for VSCode <https://platformio.org/platformio-ide>`_
6-
3. Install SiWi GSM Platform:
6+
3. Install LOGICROM Platform:
77

88
* Open PlatformIO Home
99
* Go to Platforms -> Advanced Installation
10-
* Paste repository link https://github.com/siwiembedded/platform-siwigsm.git
10+
* Paste repository link https://github.com/waybyte/platform-logicrom.git
1111
* Click Install
1212

13-
4. Download and Extract examples from github https://github.com/siwiembedded/platform-siwigsm/archive/master.zip
13+
4. Download and Extract examples from github https://github.com/waybyte/platform-logicrom/archive/master.zip
1414
5. Extract and Open example folder with *VSCode*
1515
6. Run following command:
1616

@@ -27,7 +27,7 @@ Example Output
2727

2828
.. code-block::
2929
30-
(c) 2020 SiWi
30+
(c) 2021 WAYBYTE
3131
Firmware Lib v6.49 0b5247c - Build Jun 7 2020 14:10:11
3232
Core firmware: SC20UCB01A02_SIWI_759fd68
3333
System Ready

examples/arduino-blink/README.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,14 @@ How to build
33

44
1. Install `Visual Studio Code <https://code.visualstudio.com/>`_
55
2. Install `PlatformIO Extension for VSCode <https://platformio.org/platformio-ide>`_
6-
3. Install SiWi GSM Platform:
6+
3. Install LOGICROM Platform:
77

88
* Open PlatformIO Home
99
* Go to Platforms -> Advanced Installation
10-
* Paste repository link https://github.com/siwiembedded/platform-siwigsm.git
10+
* Paste repository link https://github.com/waybyte/platform-logicrom.git
1111
* Click Install
1212

13-
4. Download and Extract examples from github https://github.com/siwiembedded/siwigsm/archive/master.zip
13+
4. Download and Extract examples from github https://github.com/waybyte/platform-logicrom/archive/master.zip
1414
5. Extract and Open example folder with *VSCode*
1515
6. Run following command:
1616

examples/gpio-blink/readme.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,14 @@ How to build
33

44
1. Install `Visual Studio Code <https://code.visualstudio.com/>`_
55
2. Install `PlatformIO Extension for VSCode <https://platformio.org/platformio-ide>`_
6-
3. Install SiWi GSM Platform:
6+
3. Install LOGICROM Platform:
77

88
* Open PlatformIO Home
99
* Go to Platforms -> Advanced Installation
10-
* Paste repository link https://github.com/siwiembedded/platform-siwigsm.git
10+
* Paste repository link https://github.com/waybyte/platform-logicrom.git
1111
* Click Install
1212

13-
4. Download and Extract examples from github https://github.com/siwiembedded/siwigsm/archive/master.zip
13+
4. Download and Extract examples from github https://github.com/waybyte/platform-logicrom/archive/master.zip
1414
5. Extract and Open example folder with *VSCode*
1515
6. Run following command:
1616

examples/socket-example/readme.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,14 @@ How to build
33

44
1. Install `Visual Studio Code <https://code.visualstudio.com/>`_
55
2. Install `PlatformIO Extension for VSCode <https://platformio.org/platformio-ide>`_
6-
3. Install SiWi GSM Platform:
6+
3. Install LOGICROM Platform:
77

88
* Open PlatformIO Home
99
* Go to Platforms -> Advanced Installation
10-
* Paste repository link https://github.com/siwiembedded/platform-siwigsm.git
10+
* Paste repository link https://github.com/waybyte/platform-logicrom.git
1111
* Click Install
1212

13-
4. Download and Extract examples from github https://github.com/siwiembedded/platform-siwigsm/archive/master.zip
13+
4. Download and Extract examples from github https://github.com/waybyte/platform-logicrom/archive/master.zip
1414
5. Extract and Open example folder with *VSCode*
1515
6. Run following command:
1616

@@ -27,7 +27,7 @@ Example Output
2727

2828
.. code-block::
2929
30-
(c) 2020 SiWi
30+
(c) 2020 WAYBYTE
3131
Firmware Lib v6.49 0b5247c - Build Jun 7 2020 14:10:11
3232
Core firmware: SC20UCB01A02_SIWI_759fd68
3333
System Ready

examples/ssl-socket-clientauth/readme.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,14 @@ How to build
33

44
1. Install `Visual Studio Code <https://code.visualstudio.com/>`_
55
2. Install `PlatformIO Extension for VSCode <https://platformio.org/platformio-ide>`_
6-
3. Install SiWi GSM Platform:
6+
3. Install LOGICROM Platform:
77

88
* Open PlatformIO Home
99
* Go to Platforms -> Advanced Installation
10-
* Paste repository link https://github.com/siwiembedded/platform-siwigsm.git
10+
* Paste repository link https://github.com/waybyte/platform-logicrom.git
1111
* Click Install
1212

13-
4. Download and Extract examples from github https://github.com/siwiembedded/platform-siwigsm/archive/master.zip
13+
4. Download and Extract examples from github https://github.com/waybyte/platform-logicrom/archive/master.zip
1414
5. Extract and Open example folder with *VSCode*
1515
6. Run following command:
1616

@@ -27,7 +27,7 @@ Example Output
2727

2828
.. code-block::
2929
30-
(c) 2020 SiWi
30+
(c) 2020 WAYBYTE
3131
Firmware Lib v6.49 0b5247c - Build Jun 7 2020 14:10:11
3232
Core firmware: SC20UCB01A02_SIWI_759fd68
3333
System Initialized

0 commit comments

Comments
 (0)