diff options
author | Dean Camera <dean@fourwalledcubicle.com> | 2010-03-24 05:50:09 +0000 |
---|---|---|
committer | Dean Camera <dean@fourwalledcubicle.com> | 2010-03-24 05:50:09 +0000 |
commit | f79f9abd28040d839b02ea22cdfde3d0a34f3482 (patch) | |
tree | cf9a30b0536dd642aa5768b7dac52ab04e56b003 /Projects/Incomplete | |
parent | 4e99625f7cd9ccd10251c871670b286536483333 (diff) | |
download | lufa-f79f9abd28040d839b02ea22cdfde3d0a34f3482.tar.gz lufa-f79f9abd28040d839b02ea22cdfde3d0a34f3482.tar.bz2 lufa-f79f9abd28040d839b02ea22cdfde3d0a34f3482.zip |
Fixed compilation error in the AudioInput demos when MICROPHONE_BIASED_TO_HALF_RAIL is defined (thanks to C. Scott Ananian).
Minor documentation cleanups.
Make sure HID class driver uses properly cast pointers when writing to the report buffer.
Diffstat (limited to 'Projects/Incomplete')
-rw-r--r-- | Projects/Incomplete/MIDIToneGenerator/MIDIToneGenerator.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Projects/Incomplete/MIDIToneGenerator/MIDIToneGenerator.h b/Projects/Incomplete/MIDIToneGenerator/MIDIToneGenerator.h index 6d6931c36..f7f39d5a9 100644 --- a/Projects/Incomplete/MIDIToneGenerator/MIDIToneGenerator.h +++ b/Projects/Incomplete/MIDIToneGenerator/MIDIToneGenerator.h @@ -64,7 +64,7 @@ /** LED mask for the library LED driver, to indicate that an error has occurred in the USB interface. */
#define LEDMASK_USB_ERROR (LEDS_LED1 | LEDS_LED3)
- #define AUDIO_SAMPLE_FREQUENCY 24000
+ #define AUDIO_SAMPLE_FREQUENCY 24000
/* Function Prototypes: */
void SetupHardware(void);
|