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 d58e9d6 + f322929 commit 0b12108Copy full SHA for 0b12108
TESTS/configs/baremetal.json
@@ -16,6 +16,7 @@
16
"storage_tdb_internal",
17
"storage_filesystem",
18
"storage_tdb_external",
19
+ "fat_chan",
20
"lora",
21
"nfc",
22
"network-emac",
TESTS/mbed_hal/watchdog_reset/main.cpp
@@ -14,6 +14,10 @@
14
* See the License for the specific language governing permissions and
15
* limitations under the License.
*/
+#if !MBED_CONF_RTOS_PRESENT
+#error [NOT_SUPPORTED] Watchdog reset test cases require a RTOS to run.
+#else
+
#if !DEVICE_WATCHDOG
#error [NOT_SUPPORTED] Watchdog not supported for this target
23
#else
@@ -334,3 +338,4 @@ int main()
334
338
}
335
339
336
340
#endif // !DEVICE_WATCHDOG
341
+#endif // !MBED_CONF_RTOS_PRESENT
0 commit comments