Skip to content

Instantly share code, notes, and snippets.

@surinoel
Created July 5, 2019 05:56
Show Gist options
  • Save surinoel/746ddd846c54268caf055c2f408fefe1 to your computer and use it in GitHub Desktop.
Save surinoel/746ddd846c54268caf055c2f408fefe1 to your computer and use it in GitHub Desktop.
/* Includes ------------------------------------------------------------------*/
#include "main.h"
/* Private includes ----------------------------------------------------------*/
/* USER CODE BEGIN Includes */
#include "stm32f429i_discovery_ts.h"
#include <stdio.h>
/* USER CODE END Includes */
/* Private typedef -----------------------------------------------------------*/
/* USER CODE BEGIN PTD */
/* USER CODE END PTD */
/* Private define ------------------------------------------------------------*/
/* USER CODE BEGIN PD */
/* USER CODE END PD */
/* Private macro -------------------------------------------------------------*/
/* USER CODE BEGIN PM */
/* USER CODE END PM */
/* Private variables ---------------------------------------------------------*/
I2C_HandleTypeDef hi2c3;
SPI_HandleTypeDef hspi5;
UART_HandleTypeDef huart1;
/* USER CODE BEGIN PV */
int _write(int file, char *ptr, int len)
{
HAL_UART_Transmit(&huart1, (uint8_t *)ptr, len, 0xFFFFFFFF);
return len;
}
/* USER CODE END PV */
/* Private function prototypes -----------------------------------------------*/
void SystemClock_Config(void);
static void MX_GPIO_Init(void);
static void MX_I2C3_Init(void);
static void MX_SPI5_Init(void);
static void MX_USART1_UART_Init(void);
/* USER CODE BEGIN PFP */
/* USER CODE END PFP */
/* Private user code ---------------------------------------------------------*/
/* USER CODE BEGIN 0 */
/* USER CODE END 0 */
/**
* @brief The application entry point.
* @retval int
*/
int main(void)
{
/* USER CODE BEGIN 1 */
/* USER CODE END 1 */
/* MCU Configuration--------------------------------------------------------*/
/* Reset of all peripherals, Initializes the Flash interface and the Systick. */
HAL_Init();
/* USER CODE BEGIN Init */
/* USER CODE END Init */
/* Configure the system clock */
SystemClock_Config();
/* USER CODE BEGIN SysInit */
/* USER CODE END SysInit */
/* Initialize all configured peripherals */
MX_GPIO_Init();
MX_I2C3_Init();
MX_SPI5_Init();
MX_USART1_UART_Init();
/* USER CODE BEGIN 2 */
TS_StateTypeDef stTouch;
BSP_TS_Init(240, 320);
/* USER CODE END 2 */
/* Infinite loop */
/* USER CODE BEGIN WHILE */
int flag = 0;
while (1)
{
/* USER CODE END WHILE */
/* USER CODE BEGIN 3 */
BSP_TS_GetState(&stTouch);
if(stTouch.TouchDetected) {
if(!flag) {
flag = 1;
printf("X : %d\r\n", stTouch.X);
printf("Y : %d\r\n", stTouch.Y);
}
}
else {
flag = 0;
}
}
/* USER CODE END 3 */
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment