mirror of
https://github.com/hathach/tinyusb.git
synced 2025-01-31 05:52:55 +08:00
pic32/olimex boards: Fix active state of button
Buttons for olimex_emz64 and olimex_hmz144 should be set to active low in board configuration.
This commit is contained in:
parent
168c7095e8
commit
45d56915d1
@ -63,7 +63,7 @@ void led_init(void)
|
|||||||
// RB8 - LED
|
// RB8 - LED
|
||||||
// ANASELB RB8 not analog
|
// ANASELB RB8 not analog
|
||||||
ANSELBCLR = TU_BIT(8);
|
ANSELBCLR = TU_BIT(8);
|
||||||
// TRISH RH2 input
|
// TRISH RH2 output
|
||||||
TRISBCLR = TU_BIT(8);
|
TRISBCLR = TU_BIT(8);
|
||||||
// Initial value 0, LED off
|
// Initial value 0, LED off
|
||||||
LATBCLR = TU_BIT(8);
|
LATBCLR = TU_BIT(8);
|
||||||
@ -128,7 +128,7 @@ void board_led_write(bool state)
|
|||||||
|
|
||||||
uint32_t board_button_read(void)
|
uint32_t board_button_read(void)
|
||||||
{
|
{
|
||||||
return (PORTB >> 12) & 1;
|
return ((PORTB >> 12) & 1) == 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
int board_uart_write(void const * buf, int len)
|
int board_uart_write(void const * buf, int len)
|
||||||
|
@ -60,7 +60,7 @@ void led_init(void)
|
|||||||
{
|
{
|
||||||
// RH2 - LED
|
// RH2 - LED
|
||||||
// ANASELH no analog function on RH2
|
// ANASELH no analog function on RH2
|
||||||
// TRISH RH2 input
|
// TRISH RH2 output
|
||||||
TRISHCLR = TU_BIT(2);
|
TRISHCLR = TU_BIT(2);
|
||||||
// Initial value 0, LED off
|
// Initial value 0, LED off
|
||||||
LATHCLR = TU_BIT(2);
|
LATHCLR = TU_BIT(2);
|
||||||
@ -126,7 +126,7 @@ void board_led_write(bool state)
|
|||||||
|
|
||||||
uint32_t board_button_read(void)
|
uint32_t board_button_read(void)
|
||||||
{
|
{
|
||||||
return (PORTB >> 12) & 1;
|
return ((PORTB >> 12) & 1) == 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
int board_uart_write(void const * buf, int len)
|
int board_uart_write(void const * buf, int len)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user