blob: 43ac337827f1c99aedab37c8c42353fbd9d1d987 (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
 | .. highlight:: cpp
.. _lang-disabledebugports:
disableDebugPorts()
===================
Used to disable the JTAG and Serial Wire debugging ports.
Library Documentation
---------------------
.. doxygenfunction:: disableDebugPorts
Example
-------
 ::
    void setup() {
        disableDebugPorts();
    }
    void loop() {
        // Now you can use the debug port pins as ordinary pins
    }
See Also
--------
* :ref:`lang-enabledebugports`
 |