Beispiel #1
0
/*
** ===================================================================
**     Event       :  VS1_OnDeactivateSPI (module Events)
**
**     Component   :  VS1 [VS1053]
**     Description :
**         Event called after deactivating SPI bus.
**     Parameters  : None
**     Returns     : Nothing
** ===================================================================
*/
void VS1_OnDeactivateSPI(void)
{
  SPIBus_OnDeactivate();
}
Beispiel #2
0
/*
** ===================================================================
**     Event       :  SD1_OnDeactivate (module Events)
**
**     Component   :  SD1 [SD_Card]
**     Description :
**         Event called when Deactivate() method is called. This gives
**         an opportunity to the application to synchronize access to a
**         shared bus.
**     Parameters  :
**         NAME            - DESCRIPTION
**         mode            - 0: slow mode, 1: fast mode
**     Returns     : Nothing
** ===================================================================
*/
void SD1_OnDeactivate(byte mode)
{
  SPIBus_OnDeactivate();
}
Beispiel #3
0
/*
** ===================================================================
**     Event       :  SD1_OnDeactivate (module Events)
**
**     Component   :  SD1 [SD_Card]
**     Description :
**         Event called when Deactivate() method is called. This gives
**         an opportunity to the application to synchronize access to a
**         shared bus.
**     Parameters  :
**         NAME            - DESCRIPTION
**         mode            - 0: slow mode, 1: fast mode
**     Returns     : Nothing
** ===================================================================
*/
void SD1_OnDeactivate(uint8_t mode)
{
  (void)mode;
  SPIBus_OnDeactivate();
}