Skip to content

Commit 2d9bba8

Browse files
committed
Merge branch 'release/v1.4.0'
2 parents ff8bc2a + d4790ef commit 2d9bba8

File tree

15 files changed

+33
-18
lines changed

15 files changed

+33
-18
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@
55
Microchip's 32-bit portfolio with the MIPS microAptiv or M4K core offer high performance microcontrollers, and all the tools needed to develop your embedded projects. PIC32 MCUs gives your application the processing power, memory and peripherals your design needs!
66

77
* [Home](http://platformio.org/platforms/microchippic32) (home page in PlatformIO Platform Registry)
8-
* [Documentation](http://docs.platformio.org/en/stable/platforms/microchippic32.html) (advanced usage, packages, boards, frameworks, etc.)
8+
* [Documentation](http://docs.platformio.org/page/platforms/microchippic32.html) (advanced usage, packages, boards, frameworks, etc.)
99

1010
# Usage
1111

12-
1. [Install PlatformIO CLI](http://docs.platformio.org/en/stable/installation.html)
12+
1. [Install PlatformIO Core](http://docs.platformio.org/page/core.html)
1313
2. Install Microchip PIC32 development platform:
1414
```bash
1515
# install the latest stable version

boards/cerebot32mx7.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,10 @@
66
"ldscript": "chipKIT-application-32MX795F512.ld",
77
"mcu": "32MX795F512L",
88
"variant": "Cerebot_32MX7"
9-
},
9+
},
10+
"connectivity": [
11+
"can"
12+
],
1013
"frameworks": [
1114
"arduino"
1215
],

boards/chipkit_pro_mx7.json

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,11 @@
66
"ldscript": "chipKIT-application-32MX795F512.ld",
77
"mcu": "32MX795F512L",
88
"variant": "Cerebot_MX7cK"
9-
},
9+
},
10+
"connectivity": [
11+
"can",
12+
"ethernet"
13+
],
1014
"frameworks": [
1115
"arduino"
1216
],

boards/chipkit_wf32.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@
77
"mcu": "32MX695F512L",
88
"variant": "WF32"
99
},
10+
"connectivity": [
11+
"wifi"
12+
],
1013
"frameworks": [
1114
"arduino"
1215
],

boards/chipkit_wifire.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@
77
"mcu": "32MZ2048ECG100",
88
"variant": "WiFire"
99
},
10+
"connectivity": [
11+
"wifi"
12+
],
1013
"frameworks": [
1114
"arduino"
1215
],

boards/mega_pic32.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@
77
"mcu": "32MX795F512L",
88
"variant": "Max32"
99
},
10+
"connectivity": [
11+
"can"
12+
],
1013
"frameworks": [
1114
"arduino"
1215
],

examples/arduino-blink/.travis.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
# Continuous Integration (CI) is the practice, in software
22
# engineering, of merging all developer working copies with a shared mainline
3-
# several times a day < http://docs.platformio.org/en/stable/ci/index.html >
3+
# several times a day < http://docs.platformio.org/page/ci/index.html >
44
#
55
# Documentation:
66
#
77
# * Travis CI Embedded Builds with PlatformIO
88
# < https://docs.travis-ci.com/user/integration/platformio/ >
99
#
1010
# * PlatformIO integration with Travis CI
11-
# < http://docs.platformio.org/en/stable/ci/travis.html >
11+
# < http://docs.platformio.org/page/ci/travis.html >
1212
#
1313
# * User Guide for `platformio ci` command
14-
# < http://docs.platformio.org/en/stable/userguide/cmd_ci.html >
14+
# < http://docs.platformio.org/page/userguide/cmd_ci.html >
1515
#
1616
#
1717
# Please choose one of the following templates (proposed below) and uncomment

examples/arduino-blink/README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
How to build PlatformIO based project
1313
=====================================
1414

15-
1. `Install PlatformIO <http://docs.platformio.org/en/stable/installation.html>`_
15+
1. `Install PlatformIO Core <http://docs.platformio.org/page/core.html>`_
1616
2. Download `development platform with examples <https://github.com/platformio/platform-microchippic32/archive/develop.zip>`_
1717
3. Extract ZIP archive
1818
4. Run these commands:

examples/arduino-blink/lib/readme.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,5 +34,5 @@ include paths and build them.
3434

3535
See additional options for PlatformIO Library Dependency Finder `lib_*`:
3636

37-
http://docs.platformio.org/en/stable/projectconf.html#lib-install
37+
http://docs.platformio.org/page/projectconf.html#lib-install
3838

examples/arduino-blink/platformio.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
; Library options: dependencies, extra library storages
66
;
77
; Please visit documentation for the other options and examples
8-
; http://docs.platformio.org/en/stable/projectconf.html
8+
; http://docs.platformio.org/page/projectconf.html
99

1010
[env:cerebot32mx4]
1111
platform = microchippic32

0 commit comments

Comments
 (0)