Skip to content
Snippets Groups Projects
Commit 772003e4 authored by Markus Brunner's avatar Markus Brunner Committed by Stefan Roese
Browse files

fix taihu soft spi_read


The taihu board used gpio_read_out_bit which reads the output register and not
the pin state.

Signed-off-by: default avatarMarkus Brunner <super.firetwister@gmail.com>
parent fc84a849
No related branches found
No related tags found
No related merge requests found
......@@ -162,7 +162,7 @@ void spi_sda(int bit)
unsigned char spi_read(void)
{
return (unsigned char)gpio_read_out_bit(SPI_DIN_GPIO15);
return (unsigned char)gpio_read_in_bit(SPI_DIN_GPIO15);
}
void taihu_spi_chipsel(int cs)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment