2018-10-19 13:51:27 +00:00
|
|
|
/* Copyright 2018 Espressif Systems (Shanghai) PTE LTD
|
2018-06-28 15:45:41 +00:00
|
|
|
*
|
2018-10-19 13:51:27 +00:00
|
|
|
* 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
|
2018-06-28 15:45:41 +00:00
|
|
|
*
|
2018-10-19 13:51:27 +00:00
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
2018-06-28 15:45:41 +00:00
|
|
|
*
|
2018-10-19 13:51:27 +00:00
|
|
|
* 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.
|
2018-06-28 15:45:41 +00:00
|
|
|
*/
|
2018-10-19 13:51:27 +00:00
|
|
|
|
|
|
|
#ifndef PORT_COMMON_H_
|
|
|
|
#define PORT_COMMON_H_
|
|
|
|
|
2018-06-28 15:45:41 +00:00
|
|
|
#include "freertos/FreeRTOS.h"
|
|
|
|
#include "freertos/xtensa_api.h"
|
2018-10-19 13:51:27 +00:00
|
|
|
#include "esp_log.h" // for ESP_LOGE macro
|
2018-06-28 15:45:41 +00:00
|
|
|
|
2018-10-19 13:51:27 +00:00
|
|
|
#define INLINE inline
|
|
|
|
#define PR_BEGIN_EXTERN_C extern "C" {
|
|
|
|
#define PR_END_EXTERN_C }
|
2018-06-28 15:45:41 +00:00
|
|
|
|
2018-10-19 13:51:27 +00:00
|
|
|
#define MB_PORT_TAG "MB_PORT_COMMON"
|
2018-06-28 15:45:41 +00:00
|
|
|
|
2019-11-26 05:16:25 +00:00
|
|
|
// common definitions for serial port implementations
|
|
|
|
#define MB_SERIAL_TX_TOUT_MS (100)
|
|
|
|
#define MB_SERIAL_TX_TOUT_TICKS pdMS_TO_TICKS(MB_SERIAL_TX_TOUT_MS) // timeout for transmission
|
|
|
|
#define MB_SERIAL_RX_TOUT_TICKS pdMS_TO_TICKS(1) // timeout for rx from buffer
|
2019-12-10 06:27:09 +00:00
|
|
|
#define MB_SERIAL_RESP_LEN_MIN (4)
|
2019-11-26 05:16:25 +00:00
|
|
|
|
2018-06-28 15:45:41 +00:00
|
|
|
#define MB_PORT_CHECK(a, ret_val, str, ...) \
|
|
|
|
if (!(a)) { \
|
|
|
|
ESP_LOGE(MB_PORT_TAG, "%s(%u): " str, __FUNCTION__, __LINE__, ##__VA_ARGS__); \
|
2019-11-08 08:55:42 +00:00
|
|
|
return ret_val; \
|
2018-06-28 15:45:41 +00:00
|
|
|
}
|
|
|
|
|
2018-10-19 13:51:27 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
PR_BEGIN_EXTERN_C
|
|
|
|
#endif /* __cplusplus */
|
2018-06-28 15:45:41 +00:00
|
|
|
|
2018-10-19 13:51:27 +00:00
|
|
|
#ifndef TRUE
|
|
|
|
#define TRUE 1
|
|
|
|
#endif
|
2019-03-07 08:51:25 +00:00
|
|
|
|
2018-10-19 13:51:27 +00:00
|
|
|
#ifndef FALSE
|
|
|
|
#define FALSE 0
|
|
|
|
#endif
|
2018-06-28 15:45:41 +00:00
|
|
|
|
|
|
|
typedef char BOOL;
|
|
|
|
|
|
|
|
typedef unsigned char UCHAR;
|
|
|
|
typedef char CHAR;
|
|
|
|
|
|
|
|
typedef unsigned short USHORT;
|
|
|
|
typedef short SHORT;
|
|
|
|
|
|
|
|
typedef unsigned long ULONG;
|
|
|
|
typedef long LONG;
|
|
|
|
|
2019-07-16 09:33:30 +00:00
|
|
|
void vMBPortEnterCritical(void);
|
|
|
|
void vMBPortExitCritical(void);
|
2018-06-28 15:45:41 +00:00
|
|
|
|
2018-10-19 13:51:27 +00:00
|
|
|
#define ENTER_CRITICAL_SECTION( ) { ESP_LOGD(MB_PORT_TAG,"%s: Port enter critical.", __func__); \
|
|
|
|
vMBPortEnterCritical(); }
|
2018-06-28 15:45:41 +00:00
|
|
|
|
2018-10-19 13:51:27 +00:00
|
|
|
#define EXIT_CRITICAL_SECTION( ) { vMBPortExitCritical(); \
|
|
|
|
ESP_LOGD(MB_PORT_TAG,"%s: Port exit critical", __func__); }
|
2018-06-28 15:45:41 +00:00
|
|
|
|
2019-12-10 06:27:09 +00:00
|
|
|
#define MB_PORT_CHECK_EVENT( event, mask ) ( event & mask )
|
|
|
|
#define MB_PORT_CLEAR_EVENT( event, mask ) do { event &= ~mask; } while(0)
|
|
|
|
|
2018-06-28 15:45:41 +00:00
|
|
|
#ifdef __cplusplus
|
2018-10-19 13:51:27 +00:00
|
|
|
PR_END_EXTERN_C
|
2018-06-28 15:45:41 +00:00
|
|
|
#endif /* __cplusplus */
|
|
|
|
|
2018-10-19 13:51:27 +00:00
|
|
|
#endif /* PORT_COMMON_H_ */
|