aboutsummaryrefslogtreecommitdiffstats
path: root/tmk_core/tool/mbed/mbed-sdk/libraries/tests/libs/SPIHalfDuplex/SPIHalfDuplex.cpp
blob: 5fc6e8568ecab32a6215c27351ce7fc3577d45ba (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
32
33
34
35
36
37
38
39
40
41
42
43
/* mbed Microcontroller Library - SPIHalfDuplex
 * Copyright (c) 2010-2011 ARM Limited. All rights reserved.
 */
#include "SPIHalfDuplex.h"

#if DEVICE_SPI

#include "spi_api.h"
#include "pinmap.h"

#define GPIO_MODE 0
#define SPI_MODE  2

namespace mbed {

SPIHalfDuplex::SPIHalfDuplex(PinName mosi, PinName miso, PinName sclk) : SPI(mosi, miso, sclk) {
    _mosi = mosi;
    _miso = miso;
    _sbits = _bits;
}

void SPIHalfDuplex::slave_format(int sbits) {
    _sbits = sbits;
}

int SPIHalfDuplex::write(int value) {
    int t_bits = _bits;
    pin_function(_mosi, SPI_MODE);
    int ret_val = SPI::write(value);
    if (ret_val != value) {
        return -1;
    }
    format(_sbits, _mode);
    pin_function(_mosi, GPIO_MODE);
    ret_val = SPI::write(0x55);
    format(t_bits, _mode);
    pin_function(_mosi, SPI_MODE);
    return ret_val;
}

} // end namespace mbed

#endif