2017-08-22 16:30:33 +02:00
|
|
|
/**
|
|
|
|
* Marlin 3D Printer Firmware
|
|
|
|
* Copyright (C) 2016 MarlinFirmware [https://github.com/MarlinFirmware/Marlin]
|
|
|
|
*
|
|
|
|
* Based on Sprinter and grbl.
|
|
|
|
* Copyright (C) 2011 Camiel Gubbels / Erik van der Zalm
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef HARDWARE_SERIAL_H_
|
|
|
|
#define HARDWARE_SERIAL_H_
|
|
|
|
|
2018-04-06 22:24:18 +02:00
|
|
|
#include "../../../inc/MarlinConfigPre.h"
|
2018-04-26 03:58:00 +02:00
|
|
|
#if ENABLED(EMERGENCY_PARSER)
|
2018-04-06 22:24:18 +02:00
|
|
|
#include "../../../feature/emergency_parser.h"
|
2018-04-26 03:58:00 +02:00
|
|
|
#endif
|
|
|
|
|
2017-08-22 16:30:33 +02:00
|
|
|
#include <stdarg.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <Stream.h>
|
|
|
|
|
|
|
|
extern "C" {
|
2017-10-25 00:28:33 +02:00
|
|
|
#include <lpc17xx_uart.h>
|
|
|
|
#include "lpc17xx_pinsel.h"
|
2017-08-22 16:30:33 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
class HardwareSerial : public Stream {
|
|
|
|
private:
|
2017-10-25 00:28:33 +02:00
|
|
|
LPC_UART_TypeDef *UARTx;
|
|
|
|
|
2018-02-04 02:33:26 +01:00
|
|
|
uint32_t Baudrate;
|
2017-10-25 00:28:33 +02:00
|
|
|
uint32_t Status;
|
|
|
|
uint8_t RxBuffer[RX_BUFFER_SIZE];
|
|
|
|
uint32_t RxQueueWritePos;
|
|
|
|
uint32_t RxQueueReadPos;
|
|
|
|
#if TX_BUFFER_SIZE > 0
|
|
|
|
uint8_t TxBuffer[TX_BUFFER_SIZE];
|
|
|
|
uint32_t TxQueueWritePos;
|
|
|
|
uint32_t TxQueueReadPos;
|
|
|
|
#endif
|
2018-04-26 03:58:00 +02:00
|
|
|
#if ENABLED(EMERGENCY_PARSER)
|
|
|
|
EmergencyParser::State emergency_state;
|
|
|
|
#endif
|
2017-08-22 16:30:33 +02:00
|
|
|
|
|
|
|
public:
|
2017-10-25 00:28:33 +02:00
|
|
|
HardwareSerial(LPC_UART_TypeDef *UARTx)
|
|
|
|
: UARTx(UARTx)
|
2018-02-04 02:33:26 +01:00
|
|
|
, Baudrate(0)
|
2017-10-25 00:28:33 +02:00
|
|
|
, RxQueueWritePos(0)
|
|
|
|
, RxQueueReadPos(0)
|
|
|
|
#if TX_BUFFER_SIZE > 0
|
|
|
|
, TxQueueWritePos(0)
|
|
|
|
, TxQueueReadPos(0)
|
|
|
|
#endif
|
2018-04-26 03:58:00 +02:00
|
|
|
#if ENABLED(EMERGENCY_PARSER)
|
|
|
|
, emergency_state(EmergencyParser::State::EP_RESET)
|
|
|
|
#endif
|
2017-10-25 00:28:33 +02:00
|
|
|
{
|
|
|
|
}
|
2017-08-22 16:30:33 +02:00
|
|
|
|
|
|
|
void begin(uint32_t baudrate);
|
2018-06-17 03:59:22 +02:00
|
|
|
int16_t peek();
|
|
|
|
int16_t read();
|
2017-08-22 16:30:33 +02:00
|
|
|
size_t write(uint8_t send);
|
2017-10-25 00:28:33 +02:00
|
|
|
#if TX_BUFFER_SIZE > 0
|
|
|
|
void flushTX();
|
|
|
|
#endif
|
2018-06-17 03:59:22 +02:00
|
|
|
size_t available();
|
2017-08-22 16:30:33 +02:00
|
|
|
void flush();
|
2018-06-17 03:59:22 +02:00
|
|
|
size_t printf(const char *format, ...);
|
2017-08-22 16:30:33 +02:00
|
|
|
|
2017-09-27 11:57:33 +02:00
|
|
|
operator bool() { return true; }
|
|
|
|
|
2017-10-25 00:28:33 +02:00
|
|
|
void IRQHandler();
|
|
|
|
|
2017-08-22 16:30:33 +02:00
|
|
|
};
|
2017-09-27 11:57:33 +02:00
|
|
|
|
|
|
|
#endif // MARLIN_SRC_HAL_HAL_SERIAL_H_
|