diff options
author | Dean Camera <dean@fourwalledcubicle.com> | 2012-01-15 14:07:14 +0000 |
---|---|---|
committer | Dean Camera <dean@fourwalledcubicle.com> | 2012-01-15 14:07:14 +0000 |
commit | bc3db793e9867567bc881942845c7d84c2b09e37 (patch) | |
tree | 61a1f5b0c81e24277890d184e4aa9d1005c3fd70 /Bootloaders/HID/BootloaderHID.c | |
parent | 3038ea1c6ea8cbc1a0a61ea1674b6c097b6b006d (diff) | |
download | lufa-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/HID/BootloaderHID.c')
-rw-r--r-- | Bootloaders/HID/BootloaderHID.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Bootloaders/HID/BootloaderHID.c b/Bootloaders/HID/BootloaderHID.c index 500d3fecb..d6ad84de7 100644 --- a/Bootloaders/HID/BootloaderHID.c +++ b/Bootloaders/HID/BootloaderHID.c @@ -65,7 +65,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); |