Skip to content

Commit 63553e5

Browse files
committed
Merge branch 'release/v1.7.0'
2 parents 64a813e + d1ca623 commit 63553e5

File tree

14 files changed

+101
-274
lines changed

14 files changed

+101
-274
lines changed

.github/workflows/examples.yml

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
name: Examples
2+
3+
on: [push, pull_request]
4+
5+
jobs:
6+
build:
7+
strategy:
8+
fail-fast: false
9+
matrix:
10+
os: [ubuntu-latest, windows-latest, macos-latest]
11+
example:
12+
- "examples/arduino-blink"
13+
- "examples/arduino-internal-libs"
14+
runs-on: ${{ matrix.os }}
15+
steps:
16+
- uses: actions/checkout@v3
17+
with:
18+
submodules: "recursive"
19+
- name: Set up Python
20+
uses: actions/setup-python@v3
21+
with:
22+
python-version: "3.9"
23+
- name: Install dependencies
24+
run: |
25+
pip install -U https://github.com/platformio/platformio/archive/develop.zip
26+
pio pkg install --global --platform symlink://.
27+
- name: Build examples
28+
run: |
29+
pio run -d ${{ matrix.example }}

.travis.yml

Lines changed: 0 additions & 27 deletions
This file was deleted.

README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
1-
# Microchip PIC32: development platform for [PlatformIO](http://platformio.org)
2-
[![Build Status](https://travis-ci.org/platformio/platform-microchippic32.svg?branch=develop)](https://travis-ci.org/platformio/platform-microchippic32)
3-
[![Build status](https://ci.appveyor.com/api/projects/status/r1gu34suxrbgfjp9/branch/develop?svg=true)](https://ci.appveyor.com/project/ivankravets/platform-microchippic32/branch/develop)
1+
# Microchip PIC32: development platform for [PlatformIO](https://platformio.org)
2+
3+
[![Build Status](https://github.com/platformio/platform-microchippic32/workflows/Examples/badge.svg)](https://github.com/platformio/platform-microchippic32/actions)
44

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

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

1010
# Usage
1111

12-
1. [Install PlatformIO](http://platformio.org)
13-
2. Create PlatformIO project and configure a platform option in [platformio.ini](http://docs.platformio.org/page/projectconf.html) file:
12+
1. [Install PlatformIO](https://platformio.org)
13+
2. Create PlatformIO project and configure a platform option in [platformio.ini](https://docs.platformio.org/page/projectconf.html) file:
1414

1515
## Stable version
1616

@@ -32,4 +32,4 @@ board = ...
3232

3333
# Configuration
3434

35-
Please navigate to [documentation](http://docs.platformio.org/page/platforms/microchippic32.html).
35+
Please navigate to [documentation](https://docs.platformio.org/page/platforms/microchippic32.html).

appveyor.yml

Lines changed: 0 additions & 23 deletions
This file was deleted.

boards/picadillo_35t.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
"frameworks": [
1313
"arduino"
1414
],
15-
"name": "4DSystems PICadillo 35T",
15+
"name": "4D Systems PICadillo 35T",
1616
"upload": {
1717
"maximum_ram_size": 131072,
1818
"maximum_size": 520192,
@@ -21,5 +21,5 @@
2121
"speed": 115200
2222
},
2323
"url": "http://www.4dsystems.com.au/product/Picadillo_35T/",
24-
"vendor": "4DSystems"
24+
"vendor": "4D Systems"
2525
}

examples/arduino-blink/.travis.yml

Lines changed: 0 additions & 67 deletions
This file was deleted.

examples/arduino-blink/README.md

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
How to build PlatformIO based project
2+
=====================================
3+
4+
1. [Install PlatformIO Core](https://docs.platformio.org/page/core.html)
5+
2. Download [development platform with examples](https://github.com/platformio/platform-microchippic32/archive/develop.zip)
6+
3. Extract ZIP archive
7+
4. Run these commands:
8+
9+
```shell
10+
# Change directory to example
11+
$ cd platform-microchippic32/examples/arduino-blink
12+
13+
# Build project
14+
$ pio run
15+
16+
# Upload firmware
17+
$ pio run --target upload
18+
19+
# Build specific environment
20+
$ pio run -e chipkit_mx3
21+
22+
# Upload firmware for the specific environment
23+
$ pio run -e chipkit_mx3 --target upload
24+
25+
# Clean build files
26+
$ pio run --target clean
27+
```

examples/arduino-blink/README.rst

Lines changed: 0 additions & 38 deletions
This file was deleted.

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/page/projectconf.html
8+
; https://docs.platformio.org/page/projectconf.html
99

1010
[env:cerebot32mx4]
1111
platform = microchippic32

examples/arduino-internal-libs/.travis.yml

Lines changed: 0 additions & 67 deletions
This file was deleted.

0 commit comments

Comments
 (0)