1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

boards/ruuvitag: fix lis2dh interrupt pin define

The lis2dh12 interrupt pin defines at some point got renamed

    LIS2DH12_PARAM_INT1 ->  LIS2DH12_PARAM_INT_PIN1

but this board was missed out.
This fixes the omission.

There are no more references to `LIS2DH12_PARAM_INT1` in the code.
This commit is contained in:
Benjamin Valentin 2020-07-02 14:56:55 +02:00
parent 045874abe6
commit 63860c94a1

View File

@ -73,9 +73,9 @@ extern "C" {
* @name Accelerometer configuration
* @{
*/
#define LIS2DH12_PARAM_CS GPIO_PIN(0, 8)
#define LIS2DH12_PARAM_INT1 GPIO_PIN(0, 2)
#define LIS2DH12_PARAM_INT2 GPIO_PIN(0, 6)
#define LIS2DH12_PARAM_CS GPIO_PIN(0, 8)
#define LIS2DH12_PARAM_INT_PIN1 GPIO_PIN(0, 2)
#define LIS2DH12_PARAM_INT_PIN2 GPIO_PIN(0, 6)
/** @} */
/**