Skip to content

Commit 3d4cd5a

Browse files
authored
Merge branch 'devel' into blkdrv-move
2 parents 19c0090 + c947828 commit 3d4cd5a

File tree

70 files changed

+1507
-738
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

70 files changed

+1507
-738
lines changed

CFDP/Checksum/Checksum.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ namespace CFDP {
106106
//! Get the checksum value
107107
U32 getValue() const;
108108

109-
PRIVATE:
109+
private:
110110

111111
// ----------------------------------------------------------------------
112112
// Private instance methods
@@ -130,7 +130,7 @@ namespace CFDP {
130130
const U8 offset //! The offset
131131
);
132132

133-
PRIVATE:
133+
private:
134134

135135
// ----------------------------------------------------------------------
136136
// Private member variables

Drv/Ip/IpSocket.hpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ class IpSocket {
138138
*
139139
* Closes the socket opened by the open call. In this case of the TcpServer, this does NOT close server's listening
140140
* port but will close the active client connection.
141-
*
141+
*
142142
* \param socketDescriptor: socket descriptor to close
143143
*/
144144
void close(const SocketDescriptor& socketDescriptor);
@@ -151,12 +151,12 @@ class IpSocket {
151151
*
152152
* A shut down begins the termination of communication. The underlying socket will coordinate a clean shutdown, and
153153
* it is safe to close the socket once a recv with 0 size has returned or an appropriate timeout has been reached.
154-
*
154+
*
155155
* \param socketDescriptor: socket descriptor to shutdown
156156
*/
157157
void shutdown(const SocketDescriptor& socketDescriptor);
158158

159-
PROTECTED:
159+
protected:
160160
/**
161161
* \brief Check if the given port is valid for the socket
162162
*

Drv/Ip/SocketComponentHelper.hpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ class SocketComponentHelper {
156156
*/
157157
Os::Task::Status join();
158158

159-
PROTECTED:
159+
protected:
160160
/**
161161
* \brief receive off the TCP socket
162162
*/
@@ -210,7 +210,7 @@ class SocketComponentHelper {
210210
*/
211211
static void readTask(void* pointer);
212212

213-
PRIVATE:
213+
private:
214214
/**
215215
* \brief Re-open port if it has been disconnected
216216
*
@@ -222,7 +222,7 @@ class SocketComponentHelper {
222222
*/
223223
SocketIpStatus reopen();
224224

225-
PROTECTED:
225+
protected:
226226
Os::Task m_task;
227227
Os::Mutex m_lock;
228228
SocketDescriptor m_descriptor;

Drv/Ip/TcpClientSocket.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ class TcpClientSocket : public IpSocket {
2929
* \brief Constructor for client socket tcp implementation
3030
*/
3131
TcpClientSocket();
32-
PROTECTED:
32+
protected:
3333
/**
3434
* \brief Check if the given port is valid for the socket
3535
*

Drv/Ip/TcpServerSocket.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ class TcpServerSocket : public IpSocket {
6262
*/
6363
U16 getListenPort();
6464

65-
PROTECTED:
65+
protected:
6666
/**
6767
* \brief Tcp specific implementation for opening a client socket connected to this server.
6868
* \param socketDescriptor: (output) descriptor opened. Only valid on SOCK_SUCCESS. Otherwise will be invalid

Drv/Ip/UdpSocket.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ class UdpSocket : public IpSocket {
3939

4040
/**
4141
* \brief configure is disabled
42-
*
42+
*
4343
* \warning configure is disabled for UdpSocket. Use configureSend and configureRecv instead.
4444
*/
4545
SocketIpStatus configure(const char* hostname, const U16 port, const U32 send_timeout_seconds,
@@ -90,7 +90,7 @@ class UdpSocket : public IpSocket {
9090
*/
9191
U16 getRecvPort();
9292

93-
PROTECTED:
93+
protected:
9494

9595
/**
9696
* \brief bind the UDP to a port such that it can receive packets at the previously configured port

Drv/LinuxGpioDriver/LinuxGpioDriver.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ class LinuxGpioDriver final : public LinuxGpioDriverComponentBase {
8080
//!
8181
void join();
8282

83-
PRIVATE:
83+
private:
8484
//! \brief helper to setup a line handle (read or write).
8585
Os::File::Status setupLineHandle(const PlatformIntType chip_descriptor,
8686
const U32 gpio,

Drv/LinuxI2cDriver/LinuxI2cDriver.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ namespace Drv {
3636
//!
3737
~LinuxI2cDriver();
3838

39-
PRIVATE:
39+
private:
4040

4141
// ----------------------------------------------------------------------
4242
// Handler implementations for user-defined typed input ports

Drv/LinuxSpiDriver/LinuxSpiDriverComponentImpl.hpp

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -37,16 +37,16 @@ namespace Drv {
3737
* SPI Mode Select
3838
*
3939
* Defines the SPI Clock Polarity and Phase for each SPI Transaction.
40-
*
40+
*
4141
* SPI Clock Polarity(CPOL): Defines clock polarity as idle low (CPOL = 0) or idle high(CPOL = 1)
42-
* SPI Clock Phase(CPHA): Defines if data is shifted out on the rising clock edge and sampled
43-
* on the falling clock edge(CPHA = 0) or if data is shifted out on the
42+
* SPI Clock Phase(CPHA): Defines if data is shifted out on the rising clock edge and sampled
43+
* on the falling clock edge(CPHA = 0) or if data is shifted out on the
4444
* falling clock edge and sampled on the rising clock edge(CPHA=1)
45-
*
45+
*
4646
*/
4747
enum SpiMode
4848
{
49-
SPI_MODE_CPOL_LOW_CPHA_LOW, ///< (CPOL = 0, CPHA = 0)
49+
SPI_MODE_CPOL_LOW_CPHA_LOW, ///< (CPOL = 0, CPHA = 0)
5050
SPI_MODE_CPOL_LOW_CPHA_HIGH,///< (CPOL = 0, CPHA = 1)
5151
SPI_MODE_CPOL_HIGH_CPHA_LOW,///< (CPOL = 1, CPHA = 0)
5252
SPI_MODE_CPOL_HIGH_CPHA_HIGH,///< (CPOL = 1, CPHA = 1)
@@ -76,7 +76,7 @@ namespace Drv {
7676
SpiFrequency clock,
7777
SpiMode spiMode = SpiMode::SPI_MODE_CPOL_LOW_CPHA_LOW);
7878

79-
PRIVATE:
79+
private:
8080

8181
// ----------------------------------------------------------------------
8282
// Handler implementations for user-defined typed input ports

Drv/LinuxUartDriver/LinuxUartDriver.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ class LinuxUartDriver final : public LinuxUartDriverComponentBase {
8686
//!
8787
~LinuxUartDriver();
8888

89-
PRIVATE:
89+
private:
9090
// ----------------------------------------------------------------------
9191
// Handler implementations for user-defined typed input ports
9292
// ----------------------------------------------------------------------

0 commit comments

Comments
 (0)