Skip to content
This repository was archived by the owner on Feb 2, 2023. It is now read-only.

Commit 5ee6d9b

Browse files
committed
Merge branch 'release/v1.0.0'
2 parents 57c6190 + 9524cd4 commit 5ee6d9b

37 files changed

+882
-36
lines changed

.github/workflows/examples.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,11 @@ jobs:
1212
example:
1313
- "examples/arduino-adc"
1414
- "examples/arduino-blink"
15-
- "examples/arduino-lorawan"
1615
- "examples/arduino-lowpower"
1716
- "examples/arduino-rgb"
17+
- "examples/LoRa/LoRaBasic/PingPong"
18+
- "examples/LoRa/LoRaWAN/LoRaWAN"
19+
- "examples/LoRa/LoRaWAN/LoRaWAN_Interrupt"
1820
runs-on: ${{ matrix.os }}
1921
steps:
2022
- uses: actions/checkout@v2

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
[![Build Status](https://github.com/HelTecAutomation/platform-asrmicro650x/workflows/Examples/badge.svg)](https://github.com/HelTecAutomation/platform-asrmicro650x/actions)
44

5-
ASR Microelectronics ASR605x series is highly intergrated and ultra low power SOC based on the PSoC 4000 series MCU (ARM Cortex M0+ Core) and Semtech SX1262 transceiver.
5+
ASR Microelectronics ASR605x series is highly integrated and ultra low power SoC based on the PSoC 4000 series MCU (ARM Cortex M0+ Core) and Semtech SX1262 transceiver.
66

77
* [Home](http://platformio.org/platforms/asrmicro650x) (home page in PlatformIO Platform Registry)
88
* [Documentation](http://docs.platformio.org/page/platforms/asrmicro650x.html) (advanced usage, packages, boards, frameworks, etc.)

boards/cubecell_board.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"core": "asr650x",
44
"cpu": "cortex-m0plus",
55
"extra_flags": "-DCubeCell_Board",
6-
"f_cpu": "32000000L",
6+
"f_cpu": "48000000L",
77
"mcu": "asr6501",
88
"variant": "CubeCell-Board"
99
},
@@ -12,7 +12,7 @@
1212
],
1313
"name": "Heltec CubeCell-Board (HTCC-AB01)",
1414
"upload": {
15-
"maximum_ram_size": 131072,
15+
"maximum_ram_size": 16384,
1616
"maximum_size": 131072,
1717
"protocol": "serial",
1818
"require_upload_port": true

boards/cubecell_board_plus.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,16 +3,16 @@
33
"core": "asr650x",
44
"cpu": "cortex-m0plus",
55
"extra_flags": "-DCubeCell_BoardPlus",
6-
"f_cpu": "32000000L",
7-
"mcu": "asr6501",
6+
"f_cpu": "48000000L",
7+
"mcu": "asr6502",
88
"variant": "CubeCell-BoardPlus"
99
},
1010
"frameworks": [
1111
"arduino"
1212
],
1313
"name": "Heltec CubeCell-Board Plus (HTCC-AB02)",
1414
"upload": {
15-
"maximum_ram_size": 131072,
15+
"maximum_ram_size": 16384,
1616
"maximum_size": 131072,
1717
"protocol": "serial",
1818
"require_upload_port": true

boards/cubecell_capsule.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,16 +3,16 @@
33
"core": "asr650x",
44
"cpu": "cortex-m0plus",
55
"extra_flags": "-DCubeCell_Capsule",
6-
"f_cpu": "32000000L",
6+
"f_cpu": "48000000L",
77
"mcu": "asr6501",
88
"variant": "CubeCell-Capsule"
99
},
1010
"frameworks": [
1111
"arduino"
1212
],
13-
"name": "Heltec CubeCell-Capsule (HTCC-AC0X)",
13+
"name": "Heltec CubeCell-Capsule (HTCC-AC01)",
1414
"upload": {
15-
"maximum_ram_size": 131072,
15+
"maximum_ram_size": 16384,
1616
"maximum_size": 131072,
1717
"protocol": "serial",
1818
"require_upload_port": true
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
{
2+
"build": {
3+
"core": "asr650x",
4+
"cpu": "cortex-m0plus",
5+
"extra_flags": "-DCubeCell_Capsule",
6+
"f_cpu": "48000000L",
7+
"mcu": "asr6502",
8+
"variant": "CubeCell-Capsule"
9+
},
10+
"frameworks": [
11+
"arduino"
12+
],
13+
"name": "Heltec CubeCell Capsule Solar Sensor (HTCC-AC02)",
14+
"upload": {
15+
"maximum_ram_size": 16384,
16+
"maximum_size": 131072,
17+
"protocol": "serial",
18+
"require_upload_port": true
19+
},
20+
"url": "https://heltec.org/project/htcc-ac02/",
21+
"vendor": "Heltec"
22+
}

boards/cubecell_gps.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,16 +3,16 @@
33
"core": "asr650x",
44
"cpu": "cortex-m0plus",
55
"extra_flags": "-DCubeCell_GPS",
6-
"f_cpu": "32000000L",
7-
"mcu": "asr6501",
6+
"f_cpu": "48000000L",
7+
"mcu": "asr6502",
88
"variant": "CubeCell-GPS"
99
},
1010
"frameworks": [
1111
"arduino"
1212
],
1313
"name": "Heltec CubeCell-GPS (HTCC-AB02S)",
1414
"upload": {
15-
"maximum_ram_size": 131072,
15+
"maximum_ram_size": 16384,
1616
"maximum_size": 131072,
1717
"protocol": "serial",
1818
"require_upload_port": true

boards/cubecell_module.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"core": "asr650x",
44
"cpu": "cortex-m0plus",
55
"extra_flags": "-DCubeCell_Module",
6-
"f_cpu": "32000000L",
6+
"f_cpu": "48000000L",
77
"mcu": "asr6501",
88
"variant": "CubeCell-Module"
99
},
@@ -12,7 +12,7 @@
1212
],
1313
"name": "Heltec CubeCell-Module (HTCC-AM01)",
1414
"upload": {
15-
"maximum_ram_size": 131072,
15+
"maximum_ram_size": 16384,
1616
"maximum_size": 131072,
1717
"protocol": "serial",
1818
"require_upload_port": true

boards/cubecell_module_plus.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,16 +3,16 @@
33
"core": "asr650x",
44
"cpu": "cortex-m0plus",
55
"extra_flags": "-DCubeCell_ModulePlus",
6-
"f_cpu": "32000000L",
7-
"mcu": "asr6501",
6+
"f_cpu": "48000000L",
7+
"mcu": "asr6502",
88
"variant": "CubeCell-ModulePlus"
99
},
1010
"frameworks": [
1111
"arduino"
1212
],
1313
"name": "Heltec CubeCell-Module Plus (HTCC-AM02)",
1414
"upload": {
15-
"maximum_ram_size": 131072,
15+
"maximum_ram_size": 16384,
1616
"maximum_size": 131072,
1717
"protocol": "serial",
1818
"require_upload_port": true

boards/cubecell_node.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,16 +3,16 @@
33
"core": "asr650x",
44
"cpu": "cortex-m0plus",
55
"extra_flags": "-DCubeCell_HalfAA",
6-
"f_cpu": "32000000L",
7-
"mcu": "asr6501",
6+
"f_cpu": "48000000L",
7+
"mcu": "asr6502",
88
"variant": "CubeCell-HalfAA"
99
},
1010
"frameworks": [
1111
"arduino"
1212
],
1313
"name": "Heltec CubeCell-1/2AA Node (HTCC-AB02A)",
1414
"upload": {
15-
"maximum_ram_size": 131072,
15+
"maximum_ram_size": 16384,
1616
"maximum_size": 131072,
1717
"protocol": "serial",
1818
"require_upload_port": true

0 commit comments

Comments
 (0)