Skip to content

Commit 931a298

Browse files
committed
Merge dev into release, V1.2.1
2 parents 6784398 + 2cfcdbc commit 931a298

File tree

13 files changed

+57
-21
lines changed

13 files changed

+57
-21
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ Add UIRBcore to your `platformio.ini` file using one of the following approaches
3636
3737
```ini
3838
lib_deps =
39-
djordjemandic/UIRBcorelib @ ^1.2.0 ; Depend on the latest 1.x stable version
39+
djordjemandic/UIRBcorelib @ ^1.2.1 ; Depend on the latest 1.x stable version
4040
```
4141

4242
> **Tip:** Discover more about specifying packages in PlatformIO by visiting the [official documentation on package specifications](https://docs.platformio.org/en/latest/core/userguide/pkg/cmd_install.html#package-specifications).
@@ -48,7 +48,7 @@ lib_deps =
4848

4949
```ini
5050
lib_deps =
51-
https://github.com/DjordjeMandic/UIRBcorelib.git#v1.2.0 ; Depend on the v1.2.0 Git tag
51+
https://github.com/DjordjeMandic/UIRBcorelib.git#v1.2.1 ; Depend on the v1.2.1 Git tag
5252
```
5353

5454
### Manually

examples/Basic/.gitignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
.pio
2+
.vscode/.browse.c_cpp.db*
3+
.vscode/c_cpp_properties.json
4+
.vscode/launch.json
5+
.vscode/ipch
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
{
2+
// See http://go.microsoft.com/fwlink/?LinkId=827846
3+
// for the documentation about the extensions.json format
4+
"recommendations": [
5+
"platformio.platformio-ide"
6+
],
7+
"unwantedRecommendations": [
8+
"ms-vscode.cpptools-extension-pack"
9+
]
10+
}

examples/Basic/platformio.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ default_envs = uirb-v02 ; Default environment to use for builds (specified belo
3838
platform = atmelavr ; Specifies the Atmel AVR platform (used for ATmega microcontrollers)
3939
framework = arduino ; Utilizes the Arduino framework for development
4040
lib_deps =
41-
djordjemandic/UIRBcorelib @ ^1.2.0 ; UIRBcore library for Universal IR Blaster (GitHub: https://github.com/DjordjeMandic/UIRBcorelib)
41+
djordjemandic/UIRBcorelib @ ^1.2.1 ; UIRBcore library for Universal IR Blaster (GitHub: https://github.com/DjordjeMandic/UIRBcorelib)
4242
monitor_speed = 1000000 ; Serial monitor baud rate (1M)
4343
monitor_filters = default, time, colorize ; Serial monitor: default output, timestamps, and colorized text
4444
build_src_flags =

examples/BypassEEPROM/.gitignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
.pio
2+
.vscode/.browse.c_cpp.db*
3+
.vscode/c_cpp_properties.json
4+
.vscode/launch.json
5+
.vscode/ipch
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
{
2+
// See http://go.microsoft.com/fwlink/?LinkId=827846
3+
// for the documentation about the extensions.json format
4+
"recommendations": [
5+
"platformio.platformio-ide"
6+
],
7+
"unwantedRecommendations": [
8+
"ms-vscode.cpptools-extension-pack"
9+
]
10+
}

examples/BypassEEPROM/platformio.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ build_flags =
4848
-DUIRB_EEPROM_BYPASS_DEBUG ; Enable EEPROM bypass mode (data stored in RAM)
4949
-DUIRB_EEPROM_RPROG_DEBUG=4990 ; Set Rprog resistance to 4990 ohms for debugging
5050
lib_deps = ; Library dependencies
51-
djordjemandic/UIRBcorelib @ ^1.2.0 ; UIRBcorelib library with version 1.2.0 or higher
51+
djordjemandic/UIRBcorelib @ ^1.2.1 ; UIRBcorelib library with version 1.2.1 or higher
5252
monitor_speed = 1000000 ; Speed for serial monitor communication in bits per second
5353
monitor_filters = default, time, colorize ; Serial monitor: default output, timestamps, and colorized text
5454
build_src_flags =

examples/Calibration/.gitignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
.pio
2+
.vscode/.browse.c_cpp.db*
3+
.vscode/c_cpp_properties.json
4+
.vscode/launch.json
5+
.vscode/ipch
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
{
2+
// See http://go.microsoft.com/fwlink/?LinkId=827846
3+
// for the documentation about the extensions.json format
4+
"recommendations": [
5+
"platformio.platformio-ide"
6+
],
7+
"unwantedRecommendations": [
8+
"ms-vscode.cpptools-extension-pack"
9+
]
10+
}

examples/Calibration/platformio.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ default_envs = uirb-v02 ; Default environment to use for builds (specified belo
3636
platform = atmelavr ; Specifies the Atmel AVR platform (used for ATmega microcontrollers)
3737
framework = arduino ; Utilizes the Arduino framework for development
3838
lib_deps =
39-
djordjemandic/UIRBcorelib @ ^1.2.0 ; UIRBcore library for Universal IR Blaster (GitHub: https://github.com/DjordjeMandic/UIRBcorelib)
39+
djordjemandic/UIRBcorelib @ ^1.2.1 ; UIRBcore library for Universal IR Blaster (GitHub: https://github.com/DjordjeMandic/UIRBcorelib)
4040
monitor_speed = 1000000 ; Serial monitor baud rate (1M)
4141
monitor_filters = default, time, colorize ; Serial monitor: default output, timestamps, and colorized text
4242
build_src_flags =

0 commit comments

Comments
 (0)