|
@@ -30,23 +30,25 @@ static struct stm32_soft_spi_config soft_spi_config[] =
|
|
/**
|
|
/**
|
|
* Attach the spi device to soft SPI bus, this function must be used after initialization.
|
|
* Attach the spi device to soft SPI bus, this function must be used after initialization.
|
|
*/
|
|
*/
|
|
-rt_err_t rt_hw_soft_spi_device_attach(const char *bus_name, const char *device_name, const char *pin_name)
|
|
|
|
|
|
+rt_err_t rt_hw_softspi_device_attach(const char *bus_name, const char *device_name, rt_base_t cs_pin)
|
|
{
|
|
{
|
|
|
|
|
|
rt_err_t result;
|
|
rt_err_t result;
|
|
struct rt_spi_device *spi_device;
|
|
struct rt_spi_device *spi_device;
|
|
|
|
|
|
/* initialize the cs pin && select the slave*/
|
|
/* initialize the cs pin && select the slave*/
|
|
- rt_base_t cs_pin = rt_pin_get(pin_name);
|
|
|
|
-
|
|
|
|
- rt_pin_mode(cs_pin,PIN_MODE_OUTPUT);
|
|
|
|
- rt_pin_write(cs_pin,PIN_HIGH);
|
|
|
|
|
|
+ if(cs_pin != PIN_NONE)
|
|
|
|
+ {
|
|
|
|
+ rt_pin_mode(cs_pin,PIN_MODE_OUTPUT);
|
|
|
|
+ rt_pin_write(cs_pin,PIN_HIGH);
|
|
|
|
+ }
|
|
|
|
|
|
/* attach the device to soft spi bus*/
|
|
/* attach the device to soft spi bus*/
|
|
spi_device = (struct rt_spi_device *)rt_malloc(sizeof(struct rt_spi_device));
|
|
spi_device = (struct rt_spi_device *)rt_malloc(sizeof(struct rt_spi_device));
|
|
RT_ASSERT(spi_device != RT_NULL);
|
|
RT_ASSERT(spi_device != RT_NULL);
|
|
|
|
+ spi_device->cs_pin = cs_pin;
|
|
|
|
|
|
- result = rt_spi_bus_attach_device(spi_device, device_name, bus_name, (void *)cs_pin);
|
|
|
|
|
|
+ result = rt_spi_bus_attach_device(spi_device, device_name, bus_name, RT_NULL);
|
|
return result;
|
|
return result;
|
|
}
|
|
}
|
|
|
|
|
|
@@ -208,7 +210,7 @@ static struct rt_spi_bit_ops stm32_soft_spi_ops =
|
|
static struct stm32_soft_spi spi_obj[sizeof(soft_spi_config) / sizeof(soft_spi_config[0])];
|
|
static struct stm32_soft_spi spi_obj[sizeof(soft_spi_config) / sizeof(soft_spi_config[0])];
|
|
|
|
|
|
/* Soft SPI initialization function */
|
|
/* Soft SPI initialization function */
|
|
-int rt_soft_spi_init(void)
|
|
|
|
|
|
+int rt_hw_softspi_init(void)
|
|
{
|
|
{
|
|
rt_size_t obj_num = sizeof(spi_obj) / sizeof(struct stm32_soft_spi);
|
|
rt_size_t obj_num = sizeof(spi_obj) / sizeof(struct stm32_soft_spi);
|
|
rt_err_t result;
|
|
rt_err_t result;
|
|
@@ -225,6 +227,6 @@ int rt_soft_spi_init(void)
|
|
|
|
|
|
return RT_EOK;
|
|
return RT_EOK;
|
|
}
|
|
}
|
|
-INIT_BOARD_EXPORT(rt_soft_spi_init);
|
|
|
|
|
|
+INIT_BOARD_EXPORT(rt_hw_softspi_init);
|
|
|
|
|
|
#endif /* defined(RT_USING_SPI) && defined(RT_USING_SPI_BITOPS) && defined(RT_USING_PIN) */
|
|
#endif /* defined(RT_USING_SPI) && defined(RT_USING_SPI_BITOPS) && defined(RT_USING_PIN) */
|