2018-10-19 13:51:27 +00:00
|
|
|
/* Copyright 2018 Espressif Systems (Shanghai) PTE LTD
|
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
|
|
|
/*
|
|
|
|
* FreeModbus Libary: ESP32 Port Demo Application
|
|
|
|
* Copyright (C) 2013 Armink <armink.ztl@gmail.com>
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library 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
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
*
|
|
|
|
* File: $Id: portserial.c,v 1.60 2013/08/13 15:07:05 Armink add Master Functions $
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "port.h"
|
|
|
|
|
|
|
|
/* ----------------------- Modbus includes ----------------------------------*/
|
|
|
|
#include "mb_m.h"
|
|
|
|
#include "mbport.h"
|
|
|
|
#include "mbrtu.h"
|
|
|
|
#include "mbconfig.h"
|
|
|
|
|
|
|
|
#include <string.h>
|
|
|
|
#include "driver/uart.h"
|
|
|
|
#include "soc/dport_access.h"
|
|
|
|
#include "freertos/FreeRTOS.h"
|
|
|
|
#include "freertos/task.h"
|
|
|
|
#include "freertos/queue.h"
|
|
|
|
#include "esp_log.h"
|
|
|
|
#include "sdkconfig.h"
|
|
|
|
#include "port_serial_master.h"
|
|
|
|
|
|
|
|
/* ----------------------- Defines ------------------------------------------*/
|
|
|
|
|
|
|
|
#define MB_BAUD_RATE_DEFAULT (115200)
|
2019-04-26 16:47:21 +00:00
|
|
|
#define MB_QUEUE_LENGTH (CONFIG_FMB_QUEUE_LENGTH)
|
2018-10-19 13:51:27 +00:00
|
|
|
|
2019-04-26 16:47:21 +00:00
|
|
|
#define MB_SERIAL_TASK_PRIO (CONFIG_FMB_SERIAL_TASK_PRIO)
|
|
|
|
#define MB_SERIAL_TASK_STACK_SIZE (CONFIG_FMB_SERIAL_TASK_STACK_SIZE)
|
2018-10-19 13:51:27 +00:00
|
|
|
#define MB_SERIAL_TOUT (3) // 3.5*8 = 28 ticks, TOUT=3 -> ~24..33 ticks
|
|
|
|
|
|
|
|
// Set buffer size for transmission
|
2019-04-26 16:47:21 +00:00
|
|
|
#define MB_SERIAL_BUF_SIZE (CONFIG_FMB_SERIAL_BUF_SIZE)
|
2018-10-19 13:51:27 +00:00
|
|
|
|
|
|
|
/* ----------------------- Static variables ---------------------------------*/
|
|
|
|
static const CHAR *TAG = "MB_MASTER_SERIAL";
|
|
|
|
|
|
|
|
// A queue to handle UART event.
|
|
|
|
static QueueHandle_t xMbUartQueue;
|
|
|
|
static TaskHandle_t xMbTaskHandle;
|
|
|
|
|
|
|
|
// The UART hardware port number
|
2019-06-14 03:01:30 +00:00
|
|
|
static UCHAR ucUartNumber = UART_NUM_MAX - 1;
|
2018-10-19 13:51:27 +00:00
|
|
|
|
|
|
|
static BOOL bRxStateEnabled = FALSE; // Receiver enabled flag
|
|
|
|
static BOOL bTxStateEnabled = FALSE; // Transmitter enabled flag
|
|
|
|
|
2019-12-10 06:27:09 +00:00
|
|
|
static UCHAR ucBuffer[MB_SERIAL_BUF_SIZE]; // Temporary buffer to transfer received data to modbus stack
|
|
|
|
static USHORT uiRxBufferPos = 0; // position in the receiver buffer
|
|
|
|
|
2018-10-19 13:51:27 +00:00
|
|
|
void vMBMasterPortSerialEnable(BOOL bRxEnable, BOOL bTxEnable)
|
|
|
|
{
|
|
|
|
// This function can be called from xMBRTUTransmitFSM() of different task
|
|
|
|
if (bTxEnable) {
|
|
|
|
bTxStateEnabled = TRUE;
|
|
|
|
} else {
|
|
|
|
bTxStateEnabled = FALSE;
|
|
|
|
}
|
|
|
|
if (bRxEnable) {
|
|
|
|
bRxStateEnabled = TRUE;
|
|
|
|
vTaskResume(xMbTaskHandle); // Resume receiver task
|
|
|
|
} else {
|
|
|
|
vTaskSuspend(xMbTaskHandle); // Block receiver task
|
|
|
|
bRxStateEnabled = FALSE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void vMBMasterPortSerialRxPoll(size_t xEventSize)
|
|
|
|
{
|
2019-11-26 05:16:25 +00:00
|
|
|
BOOL xReadStatus = TRUE;
|
|
|
|
USHORT usCnt = 0;
|
2018-10-19 13:51:27 +00:00
|
|
|
|
|
|
|
if (bRxStateEnabled) {
|
2019-12-10 06:27:09 +00:00
|
|
|
if (xEventSize > MB_SERIAL_RESP_LEN_MIN) {
|
2018-10-19 13:51:27 +00:00
|
|
|
xEventSize = (xEventSize > MB_SERIAL_BUF_SIZE) ? MB_SERIAL_BUF_SIZE : xEventSize;
|
|
|
|
// Get received packet into Rx buffer
|
2019-12-10 06:27:09 +00:00
|
|
|
USHORT usLength = uart_read_bytes(ucUartNumber, &ucBuffer[0], xEventSize, portMAX_DELAY);
|
|
|
|
uiRxBufferPos = 0;
|
|
|
|
for(usCnt = 0; xReadStatus && (usCnt < usLength); usCnt++ ) {
|
2018-10-19 13:51:27 +00:00
|
|
|
// Call the Modbus stack callback function and let it fill the stack buffers.
|
2019-12-10 06:27:09 +00:00
|
|
|
xReadStatus = pxMBMasterFrameCBByteReceived(); // callback to receive FSM state machine
|
2018-10-19 13:51:27 +00:00
|
|
|
}
|
|
|
|
// The buffer is transferred into Modbus stack and is not needed here any more
|
|
|
|
uart_flush_input(ucUartNumber);
|
2019-11-26 05:16:25 +00:00
|
|
|
ESP_LOGD(TAG, "Received data: %d(bytes in buffer)\n", (uint32_t)usCnt);
|
2018-10-19 13:51:27 +00:00
|
|
|
}
|
|
|
|
} else {
|
2019-11-26 05:16:25 +00:00
|
|
|
ESP_LOGE(TAG, "%s: bRxState disabled but junk data (%d bytes) received. ", __func__, xEventSize);
|
2018-10-19 13:51:27 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-07-16 09:33:30 +00:00
|
|
|
BOOL xMBMasterPortSerialTxPoll(void)
|
2018-10-19 13:51:27 +00:00
|
|
|
{
|
|
|
|
USHORT usCount = 0;
|
2019-11-26 05:16:25 +00:00
|
|
|
BOOL bNeedPoll = TRUE;
|
2018-10-19 13:51:27 +00:00
|
|
|
|
|
|
|
if( bTxStateEnabled ) {
|
|
|
|
// Continue while all response bytes put in buffer or out of buffer
|
2019-11-26 05:16:25 +00:00
|
|
|
while((bNeedPoll) && (usCount++ < MB_SERIAL_BUF_SIZE)) {
|
2018-10-19 13:51:27 +00:00
|
|
|
// Calls the modbus stack callback function to let it fill the UART transmit buffer.
|
2019-12-10 06:27:09 +00:00
|
|
|
bNeedPoll = pxMBMasterFrameCBTransmitterEmpty( ); // callback to transmit FSM state machine
|
2018-10-19 13:51:27 +00:00
|
|
|
}
|
|
|
|
ESP_LOGD(TAG, "MB_TX_buffer sent: (%d) bytes.", (uint16_t)(usCount - 1));
|
|
|
|
// Waits while UART sending the packet
|
|
|
|
esp_err_t xTxStatus = uart_wait_tx_done(ucUartNumber, MB_SERIAL_TX_TOUT_TICKS);
|
2019-11-08 08:55:42 +00:00
|
|
|
vMBMasterPortSerialEnable( TRUE, FALSE );
|
2018-10-19 13:51:27 +00:00
|
|
|
MB_PORT_CHECK((xTxStatus == ESP_OK), FALSE, "mb serial sent buffer failure.");
|
2019-11-08 08:55:42 +00:00
|
|
|
return TRUE;
|
2018-10-19 13:51:27 +00:00
|
|
|
}
|
2019-11-08 08:55:42 +00:00
|
|
|
return FALSE;
|
2018-10-19 13:51:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// UART receive event task
|
|
|
|
static void vUartTask(void* pvParameters)
|
|
|
|
{
|
|
|
|
uart_event_t xEvent;
|
|
|
|
for(;;) {
|
2019-11-26 05:16:25 +00:00
|
|
|
if (xQueueReceive(xMbUartQueue, (void*)&xEvent, portMAX_DELAY) == pdTRUE) {
|
2018-10-19 13:51:27 +00:00
|
|
|
ESP_LOGD(TAG, "MB_uart[%d] event:", ucUartNumber);
|
|
|
|
switch(xEvent.type) {
|
|
|
|
//Event of UART receiving data
|
|
|
|
case UART_DATA:
|
|
|
|
ESP_LOGD(TAG,"Receive data, len: %d.", xEvent.size);
|
|
|
|
// Read received data and send it to modbus stack
|
|
|
|
vMBMasterPortSerialRxPoll(xEvent.size);
|
|
|
|
break;
|
|
|
|
//Event of HW FIFO overflow detected
|
|
|
|
case UART_FIFO_OVF:
|
|
|
|
ESP_LOGD(TAG, "hw fifo overflow.");
|
|
|
|
xQueueReset(xMbUartQueue);
|
|
|
|
break;
|
|
|
|
//Event of UART ring buffer full
|
|
|
|
case UART_BUFFER_FULL:
|
|
|
|
ESP_LOGD(TAG, "ring buffer full.");
|
|
|
|
xQueueReset(xMbUartQueue);
|
|
|
|
uart_flush_input(ucUartNumber);
|
|
|
|
break;
|
|
|
|
//Event of UART RX break detected
|
|
|
|
case UART_BREAK:
|
|
|
|
ESP_LOGD(TAG, "uart rx break.");
|
|
|
|
break;
|
|
|
|
//Event of UART parity check error
|
|
|
|
case UART_PARITY_ERR:
|
|
|
|
ESP_LOGD(TAG, "uart parity error.");
|
|
|
|
break;
|
|
|
|
//Event of UART frame error
|
|
|
|
case UART_FRAME_ERR:
|
|
|
|
ESP_LOGD(TAG, "uart frame error.");
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
ESP_LOGD(TAG, "uart event type: %d.", xEvent.type);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
vTaskDelete(NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ----------------------- Start implementation -----------------------------*/
|
|
|
|
BOOL xMBMasterPortSerialInit( UCHAR ucPORT, ULONG ulBaudRate, UCHAR ucDataBits, eMBParity eParity )
|
|
|
|
{
|
|
|
|
esp_err_t xErr = ESP_OK;
|
|
|
|
MB_PORT_CHECK((eParity <= MB_PAR_EVEN), FALSE, "mb serial set parity failure.");
|
|
|
|
// Set communication port number
|
|
|
|
ucUartNumber = ucPORT;
|
|
|
|
// Configure serial communication parameters
|
|
|
|
UCHAR ucParity = UART_PARITY_DISABLE;
|
|
|
|
UCHAR ucData = UART_DATA_8_BITS;
|
|
|
|
switch(eParity){
|
|
|
|
case MB_PAR_NONE:
|
|
|
|
ucParity = UART_PARITY_DISABLE;
|
|
|
|
break;
|
|
|
|
case MB_PAR_ODD:
|
|
|
|
ucParity = UART_PARITY_ODD;
|
|
|
|
break;
|
|
|
|
case MB_PAR_EVEN:
|
|
|
|
ucParity = UART_PARITY_EVEN;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
switch(ucDataBits){
|
|
|
|
case 5:
|
|
|
|
ucData = UART_DATA_5_BITS;
|
|
|
|
break;
|
|
|
|
case 6:
|
|
|
|
ucData = UART_DATA_6_BITS;
|
|
|
|
break;
|
|
|
|
case 7:
|
|
|
|
ucData = UART_DATA_7_BITS;
|
|
|
|
break;
|
|
|
|
case 8:
|
|
|
|
ucData = UART_DATA_8_BITS;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
ucData = UART_DATA_8_BITS;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
uart_config_t xUartConfig = {
|
|
|
|
.baud_rate = ulBaudRate,
|
|
|
|
.data_bits = ucData,
|
|
|
|
.parity = ucParity,
|
|
|
|
.stop_bits = UART_STOP_BITS_1,
|
|
|
|
.flow_ctrl = UART_HW_FLOWCTRL_DISABLE,
|
|
|
|
.rx_flow_ctrl_thresh = 2,
|
2019-04-17 12:19:44 +00:00
|
|
|
.source_clk = UART_SCLK_APB,
|
2018-10-19 13:51:27 +00:00
|
|
|
};
|
|
|
|
// Set UART config
|
|
|
|
xErr = uart_param_config(ucUartNumber, &xUartConfig);
|
|
|
|
MB_PORT_CHECK((xErr == ESP_OK),
|
2019-11-26 05:16:25 +00:00
|
|
|
FALSE, "mb config failure, uart_param_config() returned (0x%x).", xErr);
|
2018-10-19 13:51:27 +00:00
|
|
|
// Install UART driver, and get the queue.
|
|
|
|
xErr = uart_driver_install(ucUartNumber, MB_SERIAL_BUF_SIZE, MB_SERIAL_BUF_SIZE,
|
2019-11-08 08:55:42 +00:00
|
|
|
MB_QUEUE_LENGTH, &xMbUartQueue, MB_PORT_SERIAL_ISR_FLAG);
|
2018-10-19 13:51:27 +00:00
|
|
|
MB_PORT_CHECK((xErr == ESP_OK), FALSE,
|
2019-11-26 05:16:25 +00:00
|
|
|
"mb serial driver failure, uart_driver_install() returned (0x%x).", xErr);
|
2018-10-19 13:51:27 +00:00
|
|
|
// Set timeout for TOUT interrupt (T3.5 modbus time)
|
|
|
|
xErr = uart_set_rx_timeout(ucUartNumber, MB_SERIAL_TOUT);
|
|
|
|
MB_PORT_CHECK((xErr == ESP_OK), FALSE,
|
2019-11-26 05:16:25 +00:00
|
|
|
"mb serial set rx timeout failure, uart_set_rx_timeout() returned (0x%x).", xErr);
|
2018-10-19 13:51:27 +00:00
|
|
|
// Create a task to handle UART events
|
|
|
|
BaseType_t xStatus = xTaskCreate(vUartTask, "uart_queue_task", MB_SERIAL_TASK_STACK_SIZE,
|
|
|
|
NULL, MB_SERIAL_TASK_PRIO, &xMbTaskHandle);
|
|
|
|
if (xStatus != pdPASS) {
|
|
|
|
vTaskDelete(xMbTaskHandle);
|
|
|
|
// Force exit from function with failure
|
|
|
|
MB_PORT_CHECK(FALSE, FALSE,
|
|
|
|
"mb stack serial task creation error. xTaskCreate() returned (0x%x).",
|
2019-11-26 05:16:25 +00:00
|
|
|
xStatus);
|
2018-10-19 13:51:27 +00:00
|
|
|
} else {
|
|
|
|
vTaskSuspend(xMbTaskHandle); // Suspend serial task while stack is not started
|
|
|
|
}
|
2019-12-10 06:27:09 +00:00
|
|
|
uiRxBufferPos = 0;
|
2018-10-19 13:51:27 +00:00
|
|
|
ESP_LOGD(MB_PORT_TAG,"%s Init serial.", __func__);
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2019-07-16 09:33:30 +00:00
|
|
|
void vMBMasterPortSerialClose(void)
|
2018-10-19 13:51:27 +00:00
|
|
|
{
|
|
|
|
(void)vTaskDelete(xMbTaskHandle);
|
|
|
|
ESP_ERROR_CHECK(uart_driver_delete(ucUartNumber));
|
|
|
|
}
|
|
|
|
|
|
|
|
BOOL xMBMasterPortSerialPutByte(CHAR ucByte)
|
|
|
|
{
|
|
|
|
// Send one byte to UART transmission buffer
|
|
|
|
// This function is called by Modbus stack
|
|
|
|
UCHAR ucLength = uart_write_bytes(ucUartNumber, &ucByte, 1);
|
|
|
|
return (ucLength == 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Get one byte from intermediate RX buffer
|
|
|
|
BOOL xMBMasterPortSerialGetByte(CHAR* pucByte)
|
|
|
|
{
|
|
|
|
assert(pucByte != NULL);
|
2019-12-10 06:27:09 +00:00
|
|
|
MB_PORT_CHECK((uiRxBufferPos < MB_SERIAL_BUF_SIZE),
|
|
|
|
FALSE, "mb stack serial get byte failure.");
|
|
|
|
*pucByte = ucBuffer[uiRxBufferPos];
|
|
|
|
uiRxBufferPos++;
|
|
|
|
return TRUE;
|
2018-10-19 13:51:27 +00:00
|
|
|
}
|