Skip to content

Commit 5b70a8c

Browse files
committed
Set PIO examples minbasecli dependency version to v1.2.0
1 parent c3f53f5 commit 5b70a8c

7 files changed

Lines changed: 15 additions & 17 deletions

File tree

examples/arduino/basic_usage/platformio.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ default_envs = arduino_esp32 ; Build ESP32 with Arduino Framework
1919
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2020

2121
[env]
22-
lib_deps = minbasecli@1.1.1
22+
lib_deps = minbasecli@1.2.0
2323

2424
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2525

examples/arduino/basic_usage_callbacks/platformio.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ default_envs = arduino_esp32 ; Build ESP32 with Arduino Framework
1919
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2020

2121
[env]
22-
lib_deps = minbasecli@1.1.1
22+
lib_deps = minbasecli@1.2.0
2323

2424
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2525

examples/arduino/platformio.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ default_envs = arduino_esp32 ; Build ESP32 with Arduino Framework
1919
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2020

2121
[env]
22-
lib_deps = minbasecli@1.1.1
22+
lib_deps = minbasecli@1.2.0
2323

2424
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2525

examples/avr/basic_usage/inc/constants.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,17 +12,17 @@
1212
* @section LICENSE
1313
*
1414
* Copyright (c) 2021 Jose Miguel Rios Rubio. All right reserved.
15-
*
15+
*
1616
* This library is free software; you can redistribute it and/or
1717
* modify it under the terms of the GNU Lesser General Public
1818
* License as published by the Free Software Foundation; either
1919
* version 2.1 of the License, or (at your option) any later version.
20-
*
20+
*
2121
* This library is distributed in the hope that it will be useful,
2222
* but WITHOUT ANY WARRANTY; without even the implied warranty of
2323
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
2424
* Lesser General Public License for more details.
25-
*
25+
*
2626
* You should have received a copy of the GNU Lesser General Public
2727
* License along with this library; if not, write to the Free Software
2828
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA

examples/avr/basic_usage_callbacks/inc/constants.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,17 +12,17 @@
1212
* @section LICENSE
1313
*
1414
* Copyright (c) 2021 Jose Miguel Rios Rubio. All right reserved.
15-
*
15+
*
1616
* This library is free software; you can redistribute it and/or
1717
* modify it under the terms of the GNU Lesser General Public
1818
* License as published by the Free Software Foundation; either
1919
* version 2.1 of the License, or (at your option) any later version.
20-
*
20+
*
2121
* This library is distributed in the hope that it will be useful,
2222
* but WITHOUT ANY WARRANTY; without even the implied warranty of
2323
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
2424
* Lesser General Public License for more details.
25-
*
25+
*
2626
* You should have received a copy of the GNU Lesser General Public
2727
* License along with this library; if not, write to the Free Software
2828
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA

examples/espidf/basic_usage/platformio.ini

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ default_envs = espidf_esp32 ; Build ESP32 with ESP-IDF Framework
2222
;default_envs = espidf_esp32_c3 ; Build ESP32-C3 with ESP-IDF Framework
2323

2424
[env]
25-
lib_deps = minbasecli@1.1.1
25+
lib_deps = minbasecli@1.2.0
2626

2727
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2828

@@ -33,15 +33,14 @@ lib_deps = minbasecli@1.1.1
3333
platform = espressif32@3.5.0
3434
board = esp32dev
3535
framework = espidf
36-
build_flags =
36+
build_flags =
3737
-DLOG_LOCAL_LEVEL=ESP_LOG_INFO
3838

3939
; ESP-IDF ESP32-C3
4040
[env:espidf_esp32_c3]
4141
platform = espressif32@3.5.0
4242
board = esp32-c3-devkitm-1
4343
framework = espidf
44-
build_flags =
44+
build_flags =
4545
-DLOG_LOCAL_LEVEL=ESP_LOG_INFO
4646
board_build.mcu = esp32c3
47-

examples/espidf/basic_usage_callbacks/platformio.ini

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ default_envs = espidf_esp32 ; Build ESP32 with ESP-IDF Framework
2222
;default_envs = espidf_esp32_c3 ; Build ESP32-C3 with ESP-IDF Framework
2323

2424
[env]
25-
lib_deps = minbasecli@1.1.1
25+
lib_deps = minbasecli@1.2.0
2626

2727
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2828

@@ -33,15 +33,14 @@ lib_deps = minbasecli@1.1.1
3333
platform = espressif32@3.5.0
3434
board = esp32dev
3535
framework = espidf
36-
build_flags =
36+
build_flags =
3737
-DLOG_LOCAL_LEVEL=ESP_LOG_INFO
3838

3939
; ESP-IDF ESP32-C3
4040
[env:espidf_esp32_c3]
4141
platform = espressif32@3.5.0
4242
board = esp32-c3-devkitm-1
4343
framework = espidf
44-
build_flags =
44+
build_flags =
4545
-DLOG_LOCAL_LEVEL=ESP_LOG_INFO
4646
board_build.mcu = esp32c3
47-

0 commit comments

Comments
 (0)