diff --git a/firmware/target/coldfire/mpio/hd200/button-hd200.c b/firmware/target/coldfire/mpio/hd200/button-hd200.c index dbc558a52e..e7272fa295 100644 --- a/firmware/target/coldfire/mpio/hd200/button-hd200.c +++ b/firmware/target/coldfire/mpio/hd200/button-hd200.c @@ -28,9 +28,9 @@ void button_init_device(void) { - /* Set GPIO36, GPIO56 as general purpose inputs */ - or_l((1<<4)|(1<<24),&GPIO1_FUNCTION); - and_l(~((1<<4)|(1<<24)),&GPIO1_ENABLE); + /* Set GPIO56 (main PLAY) as general purpose inputs */ + or_l((1<<24),&GPIO1_FUNCTION); + and_l(~(1<<24),&GPIO1_ENABLE); } bool button_hold(void)