1 /* 2 * Copyright (c) 2019 Piotr Mienkowski 3 * SPDX-License-Identifier: Apache-2.0 4 */ 5 6 #ifndef SILABS_GPIO_GECKO_H_ 7 #define SILABS_GPIO_GECKO_H_ 8 9 #define GECKO_PORT_A 0 10 #define GECKO_PORT_B 1 11 #define GECKO_PORT_C 2 12 #define GECKO_PORT_D 3 13 #define GECKO_PORT_E 4 14 #define GECKO_PORT_F 5 15 #define GECKO_PORT_G 6 16 #define GECKO_PORT_H 7 17 #define GECKO_PORT_I 8 18 #define GECKO_PORT_J 9 19 #define GECKO_PORT_K 10 20 21 #define GECKO_PIN(n) (n) 22 #define GECKO_LOCATION(n) (n) 23 24 #endif /* SILABS_GPIO_GECKO_H_ */ 25