Skip to content

Commit 64a64ba

Browse files
committed
2 parents 2b0281a + 393466e commit 64a64ba

File tree

4 files changed

+21
-16
lines changed

4 files changed

+21
-16
lines changed

examples/arduino-blink/README.rst

+3-3
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ How to build PlatformIO based project
1313
=====================================
1414

1515
1. `Install PlatformIO Core <http://docs.platformio.org/page/core.html>`_
16-
2. Download `development platform with examples <https://github.com/platformio/platform-espressif32/archive/develop.zip>`_
16+
2. Download `development platform with examples <https://github.com/platformio/platform-gd32v/archive/develop.zip>`_
1717
3. Extract ZIP archive
1818
4. Run these commands:
1919

@@ -29,10 +29,10 @@ How to build PlatformIO based project
2929
> platformio run --target upload
3030
3131
# Build specific environment
32-
> platformio run -e sipeed-maix-go
32+
> platformio run -e sipeed-longan-nano
3333
3434
# Upload firmware for the specific environment
35-
> platformio run -e sipeed-maix-go --target upload
35+
> platformio run -e sipeed-longan-nano --target upload
3636
3737
# Clean build files
3838
> platformio run --target clean

examples/eval-blink/README.rst

+3-3
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ How to build PlatformIO based project
1313
=====================================
1414

1515
1. `Install PlatformIO Core <http://docs.platformio.org/page/core.html>`_
16-
2. Download `development platform with examples <https://github.com/platformio/platform-espressif32/archive/develop.zip>`_
16+
2. Download `development platform with examples <https://github.com/platformio/platform-gd32v/archive/develop.zip>`_
1717
3. Extract ZIP archive
1818
4. Run these commands:
1919

@@ -29,10 +29,10 @@ How to build PlatformIO based project
2929
> platformio run --target upload
3030
3131
# Build specific environment
32-
> platformio run -e sipeed-maix-go
32+
> platformio run -e gd32vf103v-eval
3333
3434
# Upload firmware for the specific environment
35-
> platformio run -e sipeed-maix-go --target upload
35+
> platformio run -e gd32vf103v-eval --target upload
3636
3737
# Clean build files
3838
> platformio run --target clean

examples/longan-nano-blink/README.rst

+3-3
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ How to build PlatformIO based project
1313
=====================================
1414

1515
1. `Install PlatformIO Core <http://docs.platformio.org/page/core.html>`_
16-
2. Download `development platform with examples <https://github.com/platformio/platform-espressif32/archive/develop.zip>`_
16+
2. Download `development platform with examples <https://github.com/platformio/platform-gd32v/archive/develop.zip>`_
1717
3. Extract ZIP archive
1818
4. Run these commands:
1919

@@ -29,10 +29,10 @@ How to build PlatformIO based project
2929
> platformio run --target upload
3030
3131
# Build specific environment
32-
> platformio run -e sipeed-maix-go
32+
> platformio run -e sipeed-longan-nano
3333
3434
# Upload firmware for the specific environment
35-
> platformio run -e sipeed-maix-go --target upload
35+
> platformio run -e sipeed-longan-nano --target upload
3636
3737
# Clean build files
3838
> platformio run --target clean

platform.json

+12-7
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
11
{
22
"name": "gd32v",
3-
"title": "Platform for GD32V Series MCU",
4-
"description": "GD32V is a Risc-V 32-bit MCU. This platform is ported by Sipeed.",
5-
"url": "https://www.sipeed.com",
6-
"homepage": "http://",
3+
"title": "GigaDevice GD32V",
4+
"version": "1.0.0",
5+
"keywords": "risc-v, gd32v, sipeed, longan, arduino",
6+
"description": "The GigaDevice GD32V device is a 32-bit general-purpose microcontroller based on the RISC-V core with an impressive balance of processing power, reduced power consumption and peripheral set.",
7+
"url": "https://www.gigadevice.com/products/microcontrollers/gd32/risc-v/",
8+
"homepage": "http://platformio.org/platforms/gd32v",
79
"license": "Apache-2.0",
810
"engines": {
911
"platformio": "<5"
@@ -12,9 +14,12 @@
1214
"type": "git",
1315
"url": "https://github.com/sipeed/platform-gd32v.git"
1416
},
15-
"version": "0.0.1",
17+
"authors": [{
18+
"name": "Sipeed",
19+
"email": "[email protected]",
20+
"url": "https://www.sipeed.com"
21+
}],
1622
"packageRepositories": [
17-
"http://dl.sipeed.com/LONGAN/platformio/dl-packages/manifest.json",
1823
"https://dl.bintray.com/platformio/dl-packages/manifest.json",
1924
"http://dl.platformio.org/packages/manifest.json"
2025
],
@@ -55,4 +60,4 @@
5560
}
5661
}
5762

58-
}
63+
}

0 commit comments

Comments
 (0)