We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 38bbdb5 + 30e81b8 commit 23fe692Copy full SHA for 23fe692
.github/workflows/compile-examples.yml
@@ -57,6 +57,8 @@ jobs:
57
id: git_minima
58
- fqbn: arduino-git:renesas:unor4wifi
59
id: git_wifi
60
+ - fqbn: arduino-git:renesas:nanor4
61
+ id: git_nanor4
62
63
64
# make board type-specific customizations to the matrix jobs
@@ -112,6 +114,10 @@ jobs:
112
114
fqbn: "arduino-git:renesas:minima"
113
115
additional-sketch-paths: |
116
- libraries/OPAMP
117
+ - board:
118
+ fqbn: "arduino-git:renesas:nanor4"
119
+ additional-sketch-paths: |
120
+ - libraries/OPAMP
121
122
steps:
123
- name: Checkout repository
libraries/Arduino_CAN/src/R7FA4M1_CAN.cpp
@@ -14,7 +14,7 @@
14
15
#include "R7FA4M1_CAN.h"
16
17
-#if defined(ARDUINO_MINIMA) || defined(ARDUINO_UNOWIFIR4)
+#if defined(ARDUINO_MINIMA) || defined(ARDUINO_UNOWIFIR4) || defined(ARDUINO_NANO_R4)
18
19
#include <IRQManager.h>
20
libraries/Arduino_CAN/src/R7FA4M1_CAN.h
@@ -17,7 +17,7 @@
#include <Arduino.h>
21
22
#include "api/HardwareCAN.h"
23
libraries/Arduino_FreeRTOS/src/Arduino_FreeRTOS.h
@@ -10,8 +10,8 @@
10
11
#pragma once
12
13
-#if !defined(ARDUINO_PORTENTA_C33) && !defined(ARDUINO_MINIMA) && !defined(ARDUINO_UNOWIFIR4)
-# error "FreeRTOS is currently only supported for the Portenta C33, Arduino Uno R4 Minima and Arduino Uno R4 WiFi."
+#if !defined(ARDUINO_PORTENTA_C33) && !defined(ARDUINO_MINIMA) && !defined(ARDUINO_UNOWIFIR4)&& !defined(ARDUINO_NANO_R4)
+# error "FreeRTOS is currently only supported for the Portenta C33, Arduino Uno R4 Minima, Arduino Uno R4 WiF and Arduino Nano R4."
#endif
#ifdef __cplusplus
libraries/Arduino_FreeRTOS/src/FreeRTOSConfig.h
@@ -119,7 +119,7 @@ FSP_HEADER
#ifndef configTOTAL_HEAP_SIZE
# if defined(ARDUINO_PORTENTA_C33)
# define configTOTAL_HEAP_SIZE (0x8000)
-# elif (defined(ARDUINO_MINIMA) || defined(ARDUINO_UNOWIFIR4))
+# elif (defined(ARDUINO_MINIMA) || defined(ARDUINO_UNOWIFIR4))|| defined(ARDUINO_NANO_R4)
# define configTOTAL_HEAP_SIZE (0x2000) /* R7FA4M1AB has 32 kByte RAM total, so we only allocate 8 kByte RAM for FreeRTOS heap. */
124
# else
125
# error "Define the total allowed heap size dependent on your MCU's available RAM."
libraries/OPAMP/src/OPAMP.cpp
@@ -2,7 +2,7 @@
2
3
4
/* Make sure this library fails to compile for unsupported boards. */
5
-#if !defined(ARDUINO_UNOWIFIR4) && !defined(ARDUINO_MINIMA)
+#if !defined(ARDUINO_UNOWIFIR4) && !defined(ARDUINO_MINIMA) && !defined(ARDUINO_NANO_R4)
6
#error "Unsupported board for OPAMP library."
7
8
AltStyle によって変換されたページ (->オリジナル) / アドレス: モード: デフォルト 音声ブラウザ ルビ付き 配色反転 文字拡大 モバイル
0 commit comments