mirror of
https://github.com/bluekitchen/btstack.git
synced 2025-03-29 04:20:20 +00:00
223 lines
4.9 KiB
C
223 lines
4.9 KiB
C
/**
|
|
******************************************************************************
|
|
* @file exc7200.c
|
|
* @author MCD Application Team
|
|
* @brief This file provides a set of functions needed to manage the EXC7200
|
|
* Touch-screen controller.
|
|
******************************************************************************
|
|
* @attention
|
|
*
|
|
* Copyright (c) 2015 STMicroelectronics.
|
|
* All rights reserved.
|
|
*
|
|
* This software is licensed under terms that can be found in the LICENSE file
|
|
* in the root directory of this software component.
|
|
* If no LICENSE file comes with this software, it is provided AS-IS.
|
|
*
|
|
******************************************************************************
|
|
*/
|
|
|
|
/* Includes ------------------------------------------------------------------*/
|
|
#include "exc7200.h"
|
|
|
|
/** @addtogroup BSP
|
|
* @{
|
|
*/
|
|
|
|
/** @addtogroup Component
|
|
* @{
|
|
*/
|
|
|
|
/** @defgroup EXC7200
|
|
* @{
|
|
*/
|
|
|
|
/* Private typedef -----------------------------------------------------------*/
|
|
|
|
/** @defgroup EXC7200_Private_Types_Definitions
|
|
* @{
|
|
*/
|
|
|
|
/* Private define ------------------------------------------------------------*/
|
|
|
|
/** @defgroup EXC7200_Private_Defines
|
|
* @{
|
|
*/
|
|
|
|
/* Private macro -------------------------------------------------------------*/
|
|
|
|
/** @defgroup EXC7200_Private_Macros
|
|
* @{
|
|
*/
|
|
|
|
/* Private variables ---------------------------------------------------------*/
|
|
|
|
/** @defgroup EXC7200_Private_Variables
|
|
* @{
|
|
*/
|
|
|
|
/* Touch screen driver structure initialization */
|
|
TS_DrvTypeDef exc7200_ts_drv =
|
|
{
|
|
exc7200_Init,
|
|
exc7200_ReadID,
|
|
exc7200_Reset,
|
|
|
|
exc7200_TS_Start,
|
|
exc7200_TS_DetectTouch,
|
|
exc7200_TS_GetXY,
|
|
|
|
exc7200_TS_EnableIT,
|
|
exc7200_TS_ClearIT,
|
|
exc7200_TS_ITStatus,
|
|
exc7200_TS_DisableIT,
|
|
};
|
|
|
|
uint8_t aBufferTS[10];
|
|
|
|
/**
|
|
* @}
|
|
*/
|
|
|
|
/* Private function prototypes -----------------------------------------------*/
|
|
|
|
/** @defgroup exc7200_Private_Function_Prototypes
|
|
* @{
|
|
*/
|
|
|
|
/* Private functions ---------------------------------------------------------*/
|
|
|
|
/** @defgroup exc7200_Private_Functions
|
|
* @{
|
|
*/
|
|
|
|
/**
|
|
* @brief Initialize the exc7200 and configure the needed hardware resources
|
|
* @param DeviceAddr: Device address on communication Bus.
|
|
* @retval None
|
|
*/
|
|
void exc7200_Init(uint16_t DeviceAddr)
|
|
{
|
|
/* Initialize IO BUS layer */
|
|
IOE_Init();
|
|
|
|
}
|
|
|
|
/**
|
|
* @brief Reset the exc7200 by Software.
|
|
* @param DeviceAddr: Device address on communication Bus.
|
|
* @retval None
|
|
*/
|
|
void exc7200_Reset(uint16_t DeviceAddr)
|
|
{
|
|
|
|
}
|
|
|
|
/**
|
|
* @brief Read the exc7200 IO Expander device ID.
|
|
* @param DeviceAddr: Device address on communication Bus.
|
|
* @retval The Device ID (two bytes).
|
|
*/
|
|
uint16_t exc7200_ReadID(uint16_t DeviceAddr)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
/**
|
|
* @brief Configures the touch Screen Controller (Single point detection)
|
|
* @param DeviceAddr: Device address on communication Bus.
|
|
* @retval None.
|
|
*/
|
|
void exc7200_TS_Start(uint16_t DeviceAddr)
|
|
{
|
|
}
|
|
|
|
/**
|
|
* @brief Return if there is touch detected or not.
|
|
* @param DeviceAddr: Device address on communication Bus.
|
|
* @retval Touch detected state.
|
|
*/
|
|
uint8_t exc7200_TS_DetectTouch(uint16_t DeviceAddr)
|
|
{
|
|
/* Read TS data : Send I2C Slave address + 1 Bit0=1 for:read */
|
|
IOE_ReadMultiple(DeviceAddr | 1, EXC7200_READ_CMD, aBufferTS, 10);
|
|
|
|
/* check for first byte */
|
|
if (aBufferTS[1]==0x83)
|
|
{
|
|
return 1;
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
/**
|
|
* @brief Get the touch screen X and Y positions values
|
|
* @param DeviceAddr: Device address on communication Bus.
|
|
* @param X: Pointer to X position value
|
|
* @param Y: Pointer to Y position value
|
|
* @retval None.
|
|
*/
|
|
void exc7200_TS_GetXY(uint16_t DeviceAddr, uint16_t *X, uint16_t *Y)
|
|
{
|
|
/* Calculate positions */
|
|
*X = (((aBufferTS[3]&0x00ff) << 4) | ((aBufferTS[2]&0x00f0) >> 4)) << 1;
|
|
*Y = (((aBufferTS[5]&0x00ff) << 4) | ((aBufferTS[4]&0x00f0) >> 4)) << 1;
|
|
|
|
/* Dummy Read to deactivate read mode */
|
|
IOE_ReadMultiple(DeviceAddr, EXC7200_READ_CMD, aBufferTS, 10);
|
|
}
|
|
|
|
/**
|
|
* @brief Configure the selected source to generate a global interrupt or not
|
|
* @param DeviceAddr: Device address on communication Bus.
|
|
* @retval None
|
|
*/
|
|
void exc7200_TS_EnableIT(uint16_t DeviceAddr)
|
|
{
|
|
}
|
|
|
|
/**
|
|
* @brief Configure the selected source to generate a global interrupt or not
|
|
* @param DeviceAddr: Device address on communication Bus.
|
|
* @retval None
|
|
*/
|
|
void exc7200_TS_DisableIT(uint16_t DeviceAddr)
|
|
{
|
|
}
|
|
|
|
/**
|
|
* @brief Configure the selected source to generate a global interrupt or not
|
|
* @param DeviceAddr: Device address on communication Bus.
|
|
* @retval TS interrupts status
|
|
*/
|
|
uint8_t exc7200_TS_ITStatus(uint16_t DeviceAddr)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
/**
|
|
* @brief Configure the selected source to generate a global interrupt or not
|
|
* @param DeviceAddr: Device address on communication Bus.
|
|
* @retval None
|
|
*/
|
|
void exc7200_TS_ClearIT(uint16_t DeviceAddr)
|
|
{
|
|
}
|
|
|
|
/**
|
|
* @}
|
|
*/
|
|
|
|
/**
|
|
* @}
|
|
*/
|
|
|
|
/**
|
|
* @}
|
|
*/
|
|
|
|
/**
|
|
* @}
|
|
*/
|