12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- /*
- * Copyright 2019-2021 NXP
- * All rights reserved.
- *
- *
- * SPDX-License-Identifier: BSD-3-Clause
- */
- #ifndef _FSL_RM68200_H_
- #define _FSL_RM68200_H_
- #include "fsl_display.h"
- #include "fsl_mipi_dsi_cmd.h"
- /*
- * Change log:
- *
- * 1.1.1
- * - Support 1 lane to 4 lanes, previously only support 2 lanes.
- *
- * 1.1.0
- * - Fix MISRA-C 2012 issues.
- * - Change rm68200_resource_t structure.
- *
- * 1.0.0
- * - Initial version
- */
- /*******************************************************************************
- * Definitions
- ******************************************************************************/
- /*!
- * @brief RM68200 resource.
- */
- typedef struct _rm68200_resource
- {
- mipi_dsi_device_t *dsiDevice; /*!< MIPI DSI device. */
- void (*pullResetPin)(bool pullUp); /*!< Function to pull reset pin high or low. */
- void (*pullPowerPin)(bool pullUp); /*!< Function to pull power pin high or low. */
- } rm68200_resource_t;
- extern const display_operations_t rm68200_ops;
- /*******************************************************************************
- * API
- ******************************************************************************/
- #if defined(__cplusplus)
- extern "C" {
- #endif
- extern uint8_t RM68200_DDB_START[5];
- status_t RM68200_Init(display_handle_t *handle, const display_config_t *config);
- status_t RM68200_Deinit(display_handle_t *handle);
- status_t RM68200_Start(display_handle_t *handle);
- status_t RM68200_Stop(display_handle_t *handle);
- #if defined(__cplusplus)
- }
- #endif
- #endif /* _FSL_RM68200_H_ */
|