LIN_master_portable_Arduino 1.4
Arduino library for Local Interconnect Network master node emulation
Loading...
Searching...
No Matches
LIN_master_HardwareSerial_ESP8266.h
Go to the documentation of this file.
1
9// assert ESP8266 platform
10#if defined(ARDUINO_ARCH_ESP8266)
11
12/*-----------------------------------------------------------------------------
13 MODULE DEFINITION FOR MULTIPLE INCLUSION
14-----------------------------------------------------------------------------*/
15#ifndef _LIN_MASTER_HW_SERIAL_ESP8266_H_
16#define _LIN_MASTER_HW_SERIAL_ESP8266_H_
17
18
19/*-----------------------------------------------------------------------------
20 INCLUDE FILES
21-----------------------------------------------------------------------------*/
22
23// include required libraries
24#include <LIN_master_Base.h>
25
26
27/*-----------------------------------------------------------------------------
28 GLOBAL CLASS
29-----------------------------------------------------------------------------*/
36{
37 // PROTECTED VARIABLES
38 protected:
39
40 HardwareSerial *pSerial;
41 bool swapPins;
42
43
44 // PROTECTED METHODS
45 protected:
46
49
52
55
56
57 // PUBLIC METHODS
58 public:
59
61 LIN_Master_HardwareSerial_ESP8266(bool SwapPins = false, const char NameLIN[] = "Master", const int8_t PinTxEN = INT8_MIN);
62
64 void begin(uint16_t Baudrate = 19200);
65
67 void end(void);
68
69}; // class LIN_master_HardwareSerial_ESP8266
70
71
72/*-----------------------------------------------------------------------------
73 END OF MODULE DEFINITION FOR MULTIPLE INLUSION
74-----------------------------------------------------------------------------*/
75#endif // _LIN_MASTER_HW_SERIAL_ESP8266_H_
76
77#endif // ARDUINO_ARCH_ESP8266
78
79/*-----------------------------------------------------------------------------
80 END OF FILE
81-----------------------------------------------------------------------------*/
Base class for LIN master emulation (non-functional)
LIN master node base class.
state_t
state of LIN master state machine. Use bitmasks for fast checking multiple states
LIN master node class via ESP8266 HardwareSerial.
LIN_Master_Base::state_t _sendFrame(void)
Send LIN bytes (request frame: SYNC+ID+DATA[]+CHK; response frame: SYNC+ID)
void begin(uint16_t Baudrate=19200)
Open serial interface.
bool swapPins
use alternate pins for Serial0
LIN_Master_Base::state_t _receiveFrame(void)
Read and check LIN frame.
HardwareSerial * pSerial
serial interface used for LIN
LIN_Master_Base::state_t _sendBreak(void)
Send LIN break.