1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-12-15 09:33:50 +01:00

boards/stm32f429i-disc1: fix touch screen axis

This patch fixes a missmatch between the LCD and touch drivers'
coordinate systems.
This commit is contained in:
Joshua DeWeese 2024-11-18 21:05:41 -05:00
parent d10ab413a0
commit 05bc4051a3

View File

@ -57,6 +57,13 @@ extern "C" {
#define L3GXXXX_INT2_PIN GPIO_PIN(PORT_A, 2) /**< INT2/DRDY pin used for L3Gxxxx */
/** @} */
/**
* @brief stmpe811 driver parameters
* @{
*/
#define STMPE811_PARAM_XYCONV (STMPE811_MIRROR_Y | STMPE811_SWAP_XY)
/** @} */
#ifdef __cplusplus
}
#endif