24 lines
836 B
C
24 lines
836 B
C
/*******************************************************************************
|
|
* Copyright © 2019 TRINAMIC Motion Control GmbH & Co. KG
|
|
* (now owned by Analog Devices Inc.),
|
|
*
|
|
* Copyright © 2023 Analog Devices Inc. All Rights Reserved. This software is
|
|
* proprietary & confidential to Analog Devices, Inc. and its licensors.
|
|
*******************************************************************************/
|
|
|
|
|
|
#ifndef SELF_TEST_H
|
|
#define SELF_TEST_H
|
|
|
|
#define SELF_TEST_PINS_PER_GROUP 17
|
|
#define SELF_TEST_LEAVE 1
|
|
#define SELF_TEST_A_OUT_B_IN 2
|
|
#define SELF_TEST_A_IN_B_OUT 3
|
|
#define SELF_TEST_READ_AN 4
|
|
#define SELF_TEST_SET_AN 5
|
|
#define SELF_TEST_SET_AN_2 6
|
|
#define SELF_TEST_SET_MIXED 7
|
|
#define SELF_TEST_SET_EXTIO 8
|
|
|
|
#endif /* SELF_TEST_H */
|