STM32F4xx HAL Documentation
Hardware Abstraction Layer for STM32F4 familiy
Loading...
Searching...
No Matches
PCD Private Macros
Collaboration diagram for PCD Private Macros:

Macros

#define PCD_MIN(a, b)
 
#define PCD_MAX(a, b)
 

Detailed Description

Macro Definition Documentation

◆ PCD_MIN

#define PCD_MIN ( a,
b )

#include <stm32f4xx_hal_pcd.c>

Value:
(((a) < (b)) ? (a) : (b))

Definition at line 80 of file stm32f4xx_hal_pcd.c.

◆ PCD_MAX

#define PCD_MAX ( a,
b )

#include <stm32f4xx_hal_pcd.c>

Value:
(((a) > (b)) ? (a) : (b))

Definition at line 81 of file stm32f4xx_hal_pcd.c.