You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

10 lines
242 B

#pragma once
// clang-format off
#if defined(__AVR__)
# define readPort(port) PINx_ADDRESS(port)
typedef uint8_t port_data_t;
#else
# define readPort(qmk_pin) palReadPort(PAL_PORT(qmk_pin))
typedef uint16_t port_data_t;
#endif