You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: content/hardware/08.mega/boards/giga-r1/tutorials/cheat-sheet/cheat-sheet.md
+5-5Lines changed: 5 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -72,7 +72,7 @@ As [Arduino Core for mbed devices](https://github.com/arduino/ArduinoCore-mbed)
72
72
73
73
On most Arduino boards, when a sketch fails due to e.g. memory shortage, the board resets.
74
74
75
-
On the GIGA R1, whenever the MbedOS fails, the board does **not reset automatically**. Instead, if it fails, the onboard red LED will start to blink.
75
+
On the GIGA R1, whenever the MbedOS fails, the board does **not reset automatically**. Instead, if it fails, the onboard red LED will start to blink in a looping pattern of 4 fast blinks and 4 slow blinks.
76
76
77
77
***Please note, the red LED does NOT mean your board is broken or bricked.***
78
78
@@ -225,7 +225,7 @@ if (dac1.available()) {
225
225
}
226
226
```
227
227
228
-
The options for audio playback and generation on your GIGA R1 are **much** more vast than this, however. To learn about audio playback in depth, check out the [GIGA R1 Audio Guide](/tutorials/giga-r1/giga-audio).
228
+
***The options for audio playback and generation on your GIGA R1 are **much** more vast than this, however. To learn about audio playback in depth, check out the [GIGA R1 Audio Guide](/tutorials/giga-r1/giga-audio).***
229
229
230
230
### ADC Input
231
231
@@ -262,13 +262,13 @@ Finally, read the ADC, and store it in a way that you can use it, do this within
262
262
buf.release();
263
263
```
264
264
265
-
The options for audio input on your GIGA R1 are **much** more vast than this, however. To learn about audio recording in depth, check out the [GIGA R1 Audio Guide](/tutorials/giga-r1/giga-audio).
265
+
***The options for audio input on your GIGA R1 are **much** more vast than this, however. To learn about audio recording in depth, check out the [GIGA R1 Audio Guide](/tutorials/giga-r1/giga-audio).***
266
266
267
267
## MIPI Display Interface
268
268
269
269
The **STM32H747XI** has an internal 2D graphics accelerator with support for resolutions up to 1024x768, it also has the ability to encode and decode JPEG codec. This is what allows the **GIGA R1** to boast a 2 lane MIPI display interface.
270
270
271
-
This means that the **GIGA R1** is capable of driving a touch-display large enough to build a substantial user interface. The [LVGL](https://lvgl.io) library is a powerful tool to quickly build a responsive interface.
271
+
This means that the **GIGA R1** is capable of driving a touch-display large enough to build a substantial user interface. The [LVGL](https://lvgl.io) library is a powerful tool to quickly build an interactive interface.
272
272
273
273
## USB Features
274
274
@@ -923,7 +923,7 @@ The **GIGA R1** also has two DAC pins, A12 & A13, that can act as genuine analog
923
923
analogWrite(pin, value);
924
924
```
925
925
926
-

926
+

927
927
928
928
These DAC pins have a default write resolution of 8-bits. This means that values that are written to the pin should be between 0-255.
0 commit comments