GM6000 Digital Heater Controller Branch: main
SDX-1330
Master.h
Go to the documentation of this file.
1#ifndef Driver_SPI_Master_h_
2#define Driver_SPI_Master_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. The intended usage is to create ONE driver per physical SPI bus, i.e.
26 the driver instance can be shared with multiple clients.
27
28 The class does NOT manage the chip/slave select signal, i.e. the client is
29 responsible for asserting and de-asserting the chip/slave select before and
30 after a transaction.
31
32 The driver is NOT thread safe. It is the responsibility of the Application
33 to ensure thread safety when driver is used and/or shared with multiple
34 clients.
35 */
36class Master
37{
38public:
39 /** This method is used initialize/start the driver. To 'restart' the driver,
40 the application must call stop(), then start().
41
42 When 'newBaudRateHz' is non-zero, the SPI's transfer frequency is updated
43 (from what was provided in the constructor). When the driver is stopped
44 and restarted, the default baudrate on restart will be the value provided
45 in the constructor.
46
47 The method returns true if successful; else false is returned when an
48 error occurred. If false is returned, future read/write calls will always
49 return a failure.
50 */
51 virtual bool start( size_t newBaudRateHz = 0 ) noexcept = 0;
52
53 /// This method is used to stop/shutdown the driver.
54 virtual void stop() noexcept = 0;
55
56public:
57 /** This method writes 'numBytes' and reads 'numBytes' to/from the peripheral
58 device. The buffer pointed to by 'dstData' must be at least 'numBytes'
59 in size. If 'dstData' is nullptr, then the incoming bytes are NOT copied.
60
61 Returns true if successful; else false is returned.
62 */
63 virtual bool transfer( size_t numBytes,
64 const void* srcData,
65 void* dstData = nullptr ) noexcept = 0;
66
67public:
68 /// Virtual destructor
69 virtual ~Master() {}
70};
71
72
73
74
75}; // end namespaces
76};
77#endif // end header latch
This class defines a non-platform specific interface for an SPI master device driver.
Definition Master.h:37
virtual bool start(size_t newBaudRateHz=0) noexcept=0
This method is used initialize/start the driver.
virtual void stop() noexcept=0
This method is used to stop/shutdown the driver.
virtual bool transfer(size_t numBytes, const void *srcData, void *dstData=nullptr) noexcept=0
This method writes 'numBytes' and reads 'numBytes' to/from the peripheral device.
namespace