Rename encoder pins defines (#24003)

This commit is contained in:
Ryan 2024-07-03 17:18:27 +10:00 committed by GitHub
parent 45034ec37e
commit efd0ad6680
2 changed files with 4 additions and 4 deletions

View file

@ -15,6 +15,6 @@
*/
#pragma once
#define ENCODERS_PAD_A { B5, B6 }
#define ENCODERS_PAD_B { B4, B2 }
#define ENCODER_A_PINS { B5, B6 }
#define ENCODER_B_PINS { B4, B2 }
#define ENCODER_RESOLUTION 4

View file

@ -15,6 +15,6 @@ You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#define ENCODERS_PAD_A { F0 }
#define ENCODERS_PAD_B { F1 }
#define ENCODER_A_PINS { F0 }
#define ENCODER_B_PINS { F1 }
#define ENCODER_RESOLUTION 4