Renamed all driver termination *_ShutDown() functions to the more logical name *_Disable().
This commit is contained in:
parent
9051d3beb0
commit
43b9d552bb
37 changed files with 40 additions and 39 deletions
|
@ -421,8 +421,8 @@
|
|||
/** Turns off the ADC. If this is called, any further ADC operations will require a call to
|
||||
* \ref ADC_Init() before the ADC can be used again.
|
||||
*/
|
||||
static inline void ADC_ShutDown(void) ATTR_ALWAYS_INLINE;
|
||||
static inline void ADC_ShutDown(void)
|
||||
static inline void ADC_Disable(void) ATTR_ALWAYS_INLINE;
|
||||
static inline void ADC_Disable(void)
|
||||
{
|
||||
ADCSRA = 0;
|
||||
}
|
||||
|
|
|
@ -175,8 +175,8 @@
|
|||
/** Turns off the TWI driver hardware. If this is called, any further TWI operations will require a call to
|
||||
* \ref TWI_Init() before the TWI can be used again.
|
||||
*/
|
||||
static inline void TWI_ShutDown(void) ATTR_ALWAYS_INLINE;
|
||||
static inline void TWI_ShutDown(void)
|
||||
static inline void TWI_Disable(void) ATTR_ALWAYS_INLINE;
|
||||
static inline void TWI_Disable(void)
|
||||
{
|
||||
TWCR &= ~(1 << TWEN);
|
||||
}
|
||||
|
|
|
@ -172,7 +172,7 @@
|
|||
}
|
||||
|
||||
/** Turns off the SPI driver, disabling and returning used hardware to their default configuration. */
|
||||
static inline void SPI_ShutDown(void)
|
||||
static inline void SPI_Disable(void)
|
||||
{
|
||||
DDRB &= ~((1 << 1) | (1 << 2));
|
||||
PORTB &= ~((1 << 0) | (1 << 3));
|
||||
|
|
|
@ -145,7 +145,7 @@
|
|||
}
|
||||
|
||||
/** Turns off the USART driver, disabling and returning used hardware to their default configuration. */
|
||||
static inline void Serial_ShutDown(void)
|
||||
static inline void Serial_Disable(void)
|
||||
{
|
||||
UCSR1B = 0;
|
||||
UCSR1A = 0;
|
||||
|
|
|
@ -83,7 +83,7 @@ void USB_Init(
|
|||
USB_ResetInterface();
|
||||
}
|
||||
|
||||
void USB_ShutDown(void)
|
||||
void USB_Disable(void)
|
||||
{
|
||||
USB_INT_DisableAllInterrupts();
|
||||
USB_INT_ClearAllInterrupts();
|
||||
|
|
|
@ -292,7 +292,7 @@
|
|||
* memory, endpoints and pipes. When turned off, no USB functionality can be used until the interface
|
||||
* is restarted with the \ref USB_Init() function.
|
||||
*/
|
||||
void USB_ShutDown(void);
|
||||
void USB_Disable(void);
|
||||
|
||||
/** Resets the interface, when already initialized. This will re-enumerate the device if already connected
|
||||
* to a host, or re-enumerate an already attached device when in host mode.
|
||||
|
|
|
@ -48,6 +48,7 @@
|
|||
* value if no character is received (to remain consistent with the CDC class driver byte reception routines)
|
||||
* - Renamed the PRNT_Host_SendString(), CDC_Host_SendString() and CDC_Device_SendString() functions to *_SendData(), and
|
||||
* added new versions of the *_SendString() routines that expect a null terminated string instead
|
||||
* - Renamed all driver termination *_ShutDown() functions to the more logical name *_Disable()
|
||||
* - Library Applications:
|
||||
* - Changed the XPLAINBridge software UART to use the regular timer CTC mode instead of the alternative CTC mode
|
||||
* via the Input Capture register, to reduce user confusion
|
||||
|
|
|
@ -44,8 +44,8 @@
|
|||
*
|
||||
* void Jump_To_Bootloader(void)
|
||||
* {
|
||||
* // If USB is used, detach from the bus
|
||||
* USB_ShutDown();
|
||||
* // If USB is used, detach from the bus and reset it
|
||||
* USB_Disable();
|
||||
*
|
||||
* // Disable all interrupts
|
||||
* cli();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue