void speaker_Init ( void   )

This function sets configures the IO pin connected to the fan as an output pin.

Returns:
void

Definition at line 77 of file speaker.c.

References SPEAKER_BIT, SPEAKER_DDR, and SPEAKER_PORT.

Referenced by init_InitModules().

{
  SPEAKER_DDR  |= (1U << SPEAKER_BIT);
  
  SPEAKER_PORT |= (1U << SPEAKER_BIT);
} /* End: speaker_Init() */

Here is the caller graph for this function: