Skip to content

Commit 10f9fc9

Browse files
committed
Update terminology
1 parent 85644b0 commit 10f9fc9

File tree

21 files changed

+39
-39
lines changed

21 files changed

+39
-39
lines changed

content/hardware/02.hero/boards/uno-r4-minima/tutorials/adc-resolution/adc-resolution.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ The goals of this tutorials are:
1919

2020
- Arduino IDE ([online](https://create.arduino.cc/) or [offline](https://www.arduino.cc/en/main/software))
2121
- [Arduino R4 Minima](https://store.arduino.cc/uno-r4-minima)
22-
- [Arduino Renesas Core](https://github.com/arduino/ArduinoCore-renesas)
22+
- [UNO R4 Board Package](/tutorials/uno-r4-minima/minima-getting-started)
2323

2424
## Analog-to-Digital Converter (ADC)
2525

content/hardware/02.hero/boards/uno-r4-minima/tutorials/can/can.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ The goals of this tutorial are:
2121

2222
- Arduino IDE ([online](https://create.arduino.cc/) or [offline](https://www.arduino.cc/en/main/software))
2323
- [Arduino R4 Minima](https://store.arduino.cc/uno-r4-minima)
24-
- [Arduino Renesas Core](https://github.com/arduino/ArduinoCore-renesas)
24+
- [UNO R4 Board Package](/tutorials/uno-r4-minima/minima-getting-started)
2525
- CAN transceiver module *
2626
- Jumper wires
2727

@@ -57,9 +57,9 @@ Then, between the CAN transceivers, connect the following:
5757

5858
## Code Examples
5959

60-
The following code examples needs to be uploaded to each of the UNO R4 Minima boards, one will send a message, one will receive it. These examples are available in the Renesas core, and using the Arduino IDE, you can access them by navigating to **File > Examples > Arduino_CAN > CANWrite/CANRead**
60+
The following code examples needs to be uploaded to each of the UNO R4 Minima boards, one will send a message, one will receive it. These examples are available in the UNO R4 Board Package, and using the Arduino IDE, you can access them by navigating to **File > Examples > Arduino_CAN > CANWrite/CANRead**
6161

62-
The library used is built in to the core, so no need to install the library if you have the core installed.
62+
The library used is built in to the Board Package, so no need to install the library if you have the Board Package installed.
6363

6464
To initialize the library, use `CAN.begin(CanBitRate::BR_250k)`, where a CAN bit rate is specified. Choose between:
6565
- BR_125k (125000)

content/hardware/02.hero/boards/uno-r4-minima/tutorials/cheat-sheet/cheat-sheet.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -44,9 +44,9 @@ If you’re using the USB-C® connector you must power it with 5 V.
4444
When powered via USB, you are bypassing the onboard voltage regulator completely. In this case, the 5 V pin can provide up to 2 A without damaging the board.
4545

4646

47-
## Core
47+
## Board Package
4848

49-
The UNO R4 Minima is based on the [Arduino Core for Renesas devices](https://github.com/arduino/ArduinoCore-renesas).
49+
The UNO R4 Minima is based on the [UNO R4 Board Package](/tutorials/uno-r4-minima/minima-getting-started).
5050

5151
## Installation
5252

@@ -60,7 +60,7 @@ Read more in the [Getting Started with the UNO R4 Minima](/tutorials/uno-r4-mini
6060

6161
### Arduino Web Editor
6262

63-
The Web Editor is an online IDE that includes all official boards, no need for installing the core/package. You will need the Create Plugin installed on your computer to use the Web Editor.
63+
The Web Editor is an online IDE that includes all official boards, no need for installing the Board Package. You will need the Create Plugin installed on your computer to use the Web Editor.
6464

6565
Read more in the [Getting Started with the Web Editor](https://docs.arduino.cc/arduino-cloud/getting-started/getting-started-web-editor) guide.
6666

content/hardware/02.hero/boards/uno-r4-minima/tutorials/debugger/debugger.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ The goals of this tutorial are:
3232

3333
- [Arduino IDE](https://www.arduino.cc/en/main/software)
3434
- [Arduino R4 Minima](https://store.arduino.cc/uno-r4-minima)
35-
- [Arduino Renesas Core](https://github.com/arduino/ArduinoCore-renesas)
35+
- [UNO R4 Board Package](/tutorials/uno-r4-minima/minima-getting-started)
3636
- [Segger J-Link](https://www.segger.com/products/debug-probes/j-link/)
3737
- [Ozone](https://www.segger.com/products/development-tools/ozone-j-link-debugger/)
3838

content/hardware/02.hero/boards/uno-r4-minima/tutorials/eeprom/eeprom.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ The goals of this tutorials are:
2020
- Arduino IDE ([online](https://create.arduino.cc/) or [offline](https://www.arduino.cc/en/main/software))
2121
- USB-C cable
2222
- [Arduino R4 Minima](/hardware/uno-r4-minima)
23-
- [Arduino Renesas Core](https://github.com/arduino/ArduinoCore-renesas)
23+
- [UNO R4 Board Package](/tutorials/uno-r4-minima/minima-getting-started)
2424

2525
## EEPROM
2626

content/hardware/02.hero/boards/uno-r4-minima/tutorials/minima-getting-started/minima-getting-started.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ author: Hannes Siebeneicher
55
tags: [UNO R4 Minima, Installation, IDE]
66
---
77

8-
To use the [Arduino UNO R4 Minima](/hardware/uno-r4-minima) board, you will need to install the UNO R4 Minima board package, which is part of the [Arduino Core for Renesas devices](https://github.com/arduino/ArduinoCore-renesas).
8+
To use the [Arduino UNO R4 Minima](/hardware/uno-r4-minima) board, you will need to install the UNO R4 Minima Board Package.
99

1010
To install it, you will need a version of the Arduino IDE, which you can download from the [Arduino Software page](https://www.arduino.cc/en/software). In this guide, we will use the latest version of the IDE 2.
1111

content/hardware/02.hero/boards/uno-r4-minima/tutorials/rtc/rtc.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,11 @@ The goals of this project are:
2121

2222
- Arduino IDE ([online](https://create.arduino.cc/) or [offline](https://www.arduino.cc/en/main/software))
2323
- [Arduino R4 Minima](https://store.arduino.cc/uno-r4-minima)
24-
- [Arduino Renesas Core](https://github.com/arduino/ArduinoCore-renesas)
24+
- [UNO R4 Board Package](/tutorials/uno-r4-minima/minima-getting-started)
2525

2626
## Real-Time Clock (RTC)
2727

28-
The RTC on the UNO R4 Minima can be accessed using the [RTC](https://github.com/arduino/ArduinoCore-renesas/tree/main/libraries/RTC) library that is included in the [Renesas](https://github.com/arduino/ArduinoCore-renesas) core. This library allows you to set/get the time as well as using alarms to trigger interrupts.
28+
The RTC on the UNO R4 Minima can be accessed using the [RTC](https://github.com/arduino/ArduinoCore-renesas/tree/main/libraries/RTC) library that is included in the [UNO R4 Board Package](/tutorials/uno-r4-minima/minima-getting-started). This library allows you to set/get the time as well as using alarms to trigger interrupts.
2929

3030
There are many practical examples using an RTC, and the examples provided in this page will help you get started with it.
3131

content/hardware/02.hero/boards/uno-r4-minima/tutorials/usb-hid/usb-hid.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,15 +24,15 @@ The goals of this tutorials are:
2424

2525
- Arduino IDE ([online](https://create.arduino.cc/) or [offline](https://www.arduino.cc/en/main/software))
2626
- [Arduino R4 Minima](https://store.arduino.cc/uno-r4-minima)
27-
- [Arduino Renesas Core](https://github.com/arduino/ArduinoCore-renesas)
27+
- [UNO R4 Board Package](/tutorials/uno-r4-minima/minima-getting-started)
2828

2929
## Human Interface Device (HID)
3030

3131
Human interface devices (HID) are devices designed for humans (keyboards, mice, game controllers etc.), that frequently sends data over USB to a computer. When you press a key on a keyboard, you send data to a computer, which reads it and in turn activates the corresponding key.
3232

3333
The UNO R4 Minima has built-in support for HID, a feature found on most modern day development boards, but not on previous UNO revisions.
3434

35-
To turn your board into an HID, you can use the **keyboard/mouse** API that is built in to the core. You can visit the documentation for this API in the language reference at:
35+
To turn your board into an HID, you can use the **keyboard/mouse** API that is built in to the Board Package. You can visit the documentation for this API in the language reference at:
3636
- [Keyboard](https://www.arduino.cc/reference/en/language/functions/usb/keyboard/)
3737
- [Mouse](https://www.arduino.cc/reference/en/language/functions/usb/mouse/)
3838

content/hardware/02.hero/boards/uno-r4-wifi/tutorials/adc-resolution/adc-resolution.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ The goals of this tutorials are:
2121

2222
- Arduino IDE ([online](https://create.arduino.cc/) or [offline](https://www.arduino.cc/en/main/software))
2323
- [Arduino R4 WiFi](https://store.arduino.cc/uno-r4-wifi)
24-
- [Arduino Renesas Core](https://github.com/arduino/ArduinoCore-renesas)
24+
- [UNO R4 Board Package](/tutorials/uno-r4-wifi/r4-wifi-getting-started)
2525

2626
## Analog-to-Digital Converter (ADC)
2727

content/hardware/02.hero/boards/uno-r4-wifi/tutorials/can/can.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ The goals of this tutorial are:
2323

2424
- Arduino IDE ([online](https://create.arduino.cc/) or [offline](https://www.arduino.cc/en/main/software))
2525
- [Arduino R4 WiFi](https://store.arduino.cc/uno-r4-wifi)
26-
- [Arduino Renesas Core](https://github.com/arduino/ArduinoCore-renesas)
26+
- [UNO R4 Board Package](/tutorials/uno-r4-wifi/r4-wifi-getting-started)
2727
- CAN transceiver module *
2828
- Jumper wires
2929

@@ -59,9 +59,9 @@ Then, between the CAN transceivers, connect the following:
5959

6060
## Code Examples
6161

62-
The following code examples need to be uploaded to each of the UNO R4 WiFi boards, one will send a message, one will receive it. These examples are available in the Renesas core, and using the Arduino IDE, you can access them by navigating to **File > Examples > Arduino_CAN > CANWrite/CANRead**
62+
The following code examples need to be uploaded to each of the UNO R4 WiFi boards, one will send a message, one will receive it. These examples are available in the UNO R4 Board Package, and using the Arduino IDE, you can access them by navigating to **File > Examples > Arduino_CAN > CANWrite/CANRead**
6363

64-
The library used is built into the core, so no need to install the library if you have the core installed.
64+
The library used is built into the Board Package, so no need to install the library if you have the Board Package installed.
6565

6666
To initialize the library, use `CAN.begin(CanBitRate::BR_250k)`, where a CAN bit rate is specified. Choose between:
6767
- BR_125k (125000)

0 commit comments

Comments
 (0)