From a9a222716722f3477ecaf27f07f7d4c66862818e Mon Sep 17 00:00:00 2001 From: Jason Pecor <14111408+jpecor@users.noreply.github.com> Date: Mon, 27 May 2019 14:08:19 -0500 Subject: [PATCH] Removed warning box regarding SAMD21 builds The support matrix shows that pulseio is supported for all SAMD21/SAMD51 variants. Removing warning to avoid confusion. --- shared-bindings/pulseio/__init__.c | 4 ---- 1 file changed, 4 deletions(-) diff --git a/shared-bindings/pulseio/__init__.c b/shared-bindings/pulseio/__init__.c index 1114b604b2..a3cec3dca5 100644 --- a/shared-bindings/pulseio/__init__.c +++ b/shared-bindings/pulseio/__init__.c @@ -54,10 +54,6 @@ //| PWMOut //| -//| .. warning:: This module is not available in some SAMD21 builds. See the -//| :ref:`module-support-matrix` for more info. -//| - //| All classes change hardware state and should be deinitialized when they //| are no longer needed if the program continues after use. To do so, either //| call :py:meth:`!deinit` or use a context manager. See