aboutsummaryrefslogtreecommitdiffstats
path: root/Bootloaders/CDC/BootloaderCDC.c
diff options
context:
space:
mode:
authorDean Camera <dean@fourwalledcubicle.com>2012-01-15 14:07:14 +0000
committerDean Camera <dean@fourwalledcubicle.com>2012-01-15 14:07:14 +0000
commitbc3db793e9867567bc881942845c7d84c2b09e37 (patch)
tree61a1f5b0c81e24277890d184e4aa9d1005c3fd70 /Bootloaders/CDC/BootloaderCDC.c
parent3038ea1c6ea8cbc1a0a61ea1674b6c097b6b006d (diff)
downloadlufa-bc3db793e9867567bc881942845c7d84c2b09e37.tar.gz
lufa-bc3db793e9867567bc881942845c7d84c2b09e37.tar.bz2
lufa-bc3db793e9867567bc881942845c7d84c2b09e37.zip
Minor bootloader tweaks; make some functions static where possible to reduce the compiled binary size, add additional comments to the makefiles.
Diffstat (limited to 'Bootloaders/CDC/BootloaderCDC.c')
-rw-r--r--Bootloaders/CDC/BootloaderCDC.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/Bootloaders/CDC/BootloaderCDC.c b/Bootloaders/CDC/BootloaderCDC.c
index 0e7920a15..c8ade7dcb 100644
--- a/Bootloaders/CDC/BootloaderCDC.c
+++ b/Bootloaders/CDC/BootloaderCDC.c
@@ -88,7 +88,7 @@ int main(void)
}
/** Configures all hardware required for the bootloader. */
-void SetupHardware(void)
+static void SetupHardware(void)
{
/* Disable watchdog if enabled by bootloader/fuses */
MCUSR &= ~(1 << WDRF);
@@ -350,7 +350,7 @@ static void WriteNextResponseByte(const uint8_t Response)
/** Task to read in AVR910 commands from the CDC data OUT endpoint, process them, perform the required actions
* and send the appropriate response back to the host.
*/
-void CDC_Task(void)
+static void CDC_Task(void)
{
/* Select the OUT endpoint */
Endpoint_SelectEndpoint(CDC_RX_EPNUM);