Proyecto Final – Medición de Inclinación 0.0.1
Este proyecto utiliza la placa NUCLEO-STM32F446RE y permite detectar y visualizar en tiempo real la inclinación mediante el sensor MPU-6050.
Cargando...
Buscando...
Nada coincide
dev_gpio_cfg.h
Ir a la documentación de este archivo.
1/* USER CODE BEGIN Header */
19/* USER CODE END Header */
20/* Define to prevent recursive inclusion -------------------------------------*/
21#ifndef __DEV_GPIO_CFG_H__
22#define __DEV_GPIO_CFG_H__
23
24#ifdef __cplusplus
25extern "C" {
26#endif
27
28#define B1_Pin GPIO_PIN_13
29#define B1_GPIO_Port GPIOC
30#define USART_TX_Pin GPIO_PIN_2
31#define USART_TX_GPIO_Port GPIOA
32#define USART_RX_Pin GPIO_PIN_3
33#define USART_RX_GPIO_Port GPIOA
34#define LD2_Pin GPIO_PIN_5
35#define LD2_GPIO_Port GPIOA
36#define TMS_Pin GPIO_PIN_13
37#define TMS_GPIO_Port GPIOA
38#define TCK_Pin GPIO_PIN_14
39#define TCK_GPIO_Port GPIOA
40#define SWO_Pin GPIO_PIN_3
41#define SWO_GPIO_Port GPIOB
42
43#ifdef __cplusplus
44}
45#endif
46#endif /*__ DEV_GPIO_CFG_H__ */
47