summaryrefslogtreecommitdiffstatshomepage
path: root/docs/library/pyb.SD.rst
blob: 0746b435bf991c1a62dd08ec44d1a1570afc1f13 (plain) (blame)
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
32
33
34
35
36
37
38
39
.. _pyb.SD:

class SD -- secure digital memory card
======================================

The SD card class allows to configure and enable the memory card
module of the WiPy and automatically mount it as ``/sd`` as part
of the file system. There are several pin combinations that can be
used to wire the SD card socket to the WiPy and the pins used can
be specified in the constructor. Please check the `pinout and alternate functions
table. <https://raw.githubusercontent.com/wipy/wipy/master/docs/PinOUT.png>`_ for
more info regarding the pins which can be remapped to be used with a SD card.

Example usage::

    # data, clk and cmd pins must be passed along with
    # their respective alternate functions
    sd = pyb.SD('GP15', 8, 'GP10', 6, 'GP11', 6)
    sd.enable()      # enable and mount the SD card
    sd.disable()     # disable and unmount it

Constructors
------------

.. class:: pyb.SD(dat_pin, dat_pin_af, clk_pin, clk_pin_af, cmd_pin, cmd_pin_af)

   Create a SD card object. Data, clock and cmd pins must be passed along with 
   their respective alternate functions.

Methods
-------

.. method:: sd.enable()

   Enable the SD card and mount it on the file system. Accesible as ``/sd``.

.. method:: sd.disable()

   Disable the SD card and remove it from the file system.