GM6000 Digital Heater Controller Branch: main
SDX-1330
MasterHalfDuplex.h
Go to the documentation of this file.
1#ifndef Driver_SPI_MasterHalfDuplex_h_
2#define Driver_SPI_MasterHalfDuplex_h_
3/*-----------------------------------------------------------------------------
4 * This file is part of the Colony.Core Project. The Colony.Core Project is an
5 * open source project with a BSD type of licensing agreement. See the license
6 * agreement (license.txt) in the top/ directory or on the Internet at
7 * http://integerfox.com/colony.core/license.txt
8 *
9 * Copyright (c) 2014-2023 John T. Taylor
10 *
11 * Redistributions of the source code must retain the above copyright notice.
12 *----------------------------------------------------------------------------*/
13/** @file */
14
15
16#include <stdlib.h>
17
18///
19namespace Driver {
20///
21namespace SPI {
22
23
24/** This class defines a non-platform specific interface for an SPI master device
25 driver using HALF-DUPLEX data transfers, i.e, only transmit data or receive
26 data. The intended usage is to create ONE driver per physical SPI bus, i.e.
27 the driver instance can be shared with multiple clients.
28
29 The class does NOT manage the chip/slave select signal, i.e. the client is
30 responsible for asserting and de-asserting the chip/slave select before and
31 after a transaction.
32
33 The driver is NOT thread safe. It is the responsibility of the Application
34 to ensure thread safety when driver is used and/or shared with multiple
35 clients.
36 */
38{
39public:
40 /** This method is used initialize/start the driver. To 'restart' the driver,
41 the application must call stop(), then start().
42
43 When 'newBaudRateHz' is non-zero, the SPI's transfer frequency is updated
44 (from what was provided in the constructor). When the driver is stopped
45 and restarted, the default baudrate on restart will be the value provided
46 in the constructor.
47
48 The method returns true if successful; else false is returned when an
49 error occurred. If false is returned, future read/write calls will always
50 return a failure.
51 */
52 virtual bool start( size_t newBaudRateHz = 0 ) noexcept = 0;
53
54 /// This method is used to stop/shutdown the driver.
55 virtual void stop() noexcept = 0;
56
57public:
58 /** This method writes 'numBytes' to the peripheral device.
59 Returns true if successful; else false is returned.
60 */
61 virtual bool transmit( size_t numBytes,
62 const void* srcData ) noexcept = 0;
63
64 /** This method reads 'numBytes' from the peripheral device. The buffer
65 pointed to by 'dstData' must be at least 'numBytes' in size.
66 Returns true if successful; else false is returned.
67 */
68 virtual bool receive( size_t numBytes,
69 void* dstData ) noexcept = 0;
70
71public:
72 /// Virtual destructor
73 virtual ~MasterHalfDuplex() {}
74};
75
76
77}; // end namespaces
78};
79#endif // end header latch
This class defines a non-platform specific interface for an SPI master device driver using HALF-DUPLE...
Definition MasterHalfDuplex.h:38
virtual bool start(size_t newBaudRateHz=0) noexcept=0
This method is used initialize/start the driver.
virtual bool transmit(size_t numBytes, const void *srcData) noexcept=0
This method writes 'numBytes' to the peripheral device.
virtual void stop() noexcept=0
This method is used to stop/shutdown the driver.
virtual bool receive(size_t numBytes, void *dstData) noexcept=0
This method reads 'numBytes' from the peripheral device.
namespace