git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@5808 35acf78f-673a-0410-8e92-d51de3d6d3f4
This commit is contained in:
parent
0755c754f4
commit
cbce43930a
|
@ -882,8 +882,7 @@ void spi_lld_stop(SPIDriver *spip) {
|
||||||
*/
|
*/
|
||||||
void spi_lld_select(SPIDriver *spip) {
|
void spi_lld_select(SPIDriver *spip) {
|
||||||
|
|
||||||
(void)spip;
|
palClearPad(spip->config->ssport, spip->config->sspad);
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -896,8 +895,7 @@ void spi_lld_select(SPIDriver *spip) {
|
||||||
*/
|
*/
|
||||||
void spi_lld_unselect(SPIDriver *spip) {
|
void spi_lld_unselect(SPIDriver *spip) {
|
||||||
|
|
||||||
(void)spip;
|
palSetPad(spip->config->ssport, spip->config->sspad);
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in New Issue