Imt.Base C++ API V4.1.1.0
Loading...
Searching...
No Matches
SerialPort.h
Go to the documentation of this file.
1// (c) IMT - Information Management Technology AG, CH-9470 Buchs, www.imt.ch.
2
3#ifndef IMT_BASE_OS_LINUX_SERIALPORT_H
4#define IMT_BASE_OS_LINUX_SERIALPORT_H
5
8
9namespace imt {
10namespace base {
11namespace os {
12namespace linux {
13
17class SerialPort final {
18
19public:
20
25 SerialPort(SerialPortConfig config) noexcept;
26
31
38 // AXIVION Next Construct AutosarC++19_03-A8.4.7: Method signature given by Imt.Base.Lib.Remoting
39 size_t read(uint8_t* const pData, size_t const countDataBytes) const;
40
47 // AXIVION Next Construct AutosarC++19_03-A8.4.7: Method signature given by Imt.Base.Lib.Remoting
48 size_t write(uint8_t const* const pData, size_t const countDataBytes) const;
49
50 SerialPort(SerialPort const& source) = delete;
51 SerialPort(SerialPort&& source) noexcept = delete;
52 SerialPort& operator=(SerialPort const& source) = delete;
53 SerialPort& operator=(SerialPort&& source) noexcept = delete;
54
55private:
56
57 SerialPortConfig m_config;
58 int32_t m_fileHandle;
59};
60
61} // namespace linux
62} // namespace os
63} // namespace base
64} // namespace imt
65
66#endif // IMT_BASE_OS_LINUX_SERIALPORT_H
Maintains configuration information of a serial port.
Provides functions to transmit serial port data.
Definition SerialPort.h:17
size_t read(uint8_t *const pData, size_t const countDataBytes) const
Reads the given number of bytes from the serial port.
SerialPort(SerialPort const &source)=delete
SerialPort & operator=(SerialPort &&source) noexcept=delete
SerialPort(SerialPortConfig config) noexcept
Constructor.
SerialPort(SerialPort &&source) noexcept=delete
size_t write(uint8_t const *const pData, size_t const countDataBytes) const
Writes the given data to the serial port.
SerialPort & operator=(SerialPort const &source)=delete
This is a application specific file which is used to configure Imt.Base.Core.Math.
__int32 int32_t
Definition stdint.h:60
unsigned __int8 uint8_t
Definition stdint.h:62