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.
1 parent 4175ed2 commit 0fc20f2Copy full SHA for 0fc20f2
subsys/mgmt/mcumgr/grp/os_mgmt/include/os_mgmt_processor.h
@@ -152,6 +152,16 @@ extern "C" {
152
#endif
153
#elif defined(CONFIG_RISCV)
154
#define PROCESSOR_NAME "riscv"
155
+#elif defined(CONFIG_RX)
156
+#if defined(CONFIG_CPU_RXV1)
157
+#define PROCESSOR_NAME "rxv1"
158
+#elif defined(CONFIG_CPU_RXV2)
159
+#define PROCESSOR_NAME "rxv2"
160
+#elif defined(CONFIG_CPU_RXV3)
161
+#define PROCESSOR_NAME "rxv3"
162
+#else
163
+#define PROCESSOR_NAME "rx"
164
+#endif
165
#elif defined(CONFIG_XTENSA)
166
#define PROCESSOR_NAME "xtensa"
167
#elif defined(CONFIG_SPARC)
0 commit comments