Update the Android Accessory Host ClassDriver demo to use the updated class configuration API.

Enable -Wcast-align warning for the UC3 architecture in the ModuleTest build test now that the test passes with it.

Minor documentation improvements.
Dean Camera 13 years ago
parent 4068efbd18
commit 1dcc1fe527
  1. 2
      BuildTests/ModuleTest/makefile.uc3
  2. 1
      BuildTests/ModuleTest/makefile.xmega
  3. 12
      Demos/Host/ClassDriver/AndroidAccessoryHost/AndroidAccessoryHost.c
  4. 1
      LUFA/DoxygenPages/LUFAPoweredProjects.txt

@ -200,7 +200,7 @@ CFLAGS += -Wswitch-enum
CFLAGS += -Wunused CFLAGS += -Wunused
CFLAGS += -Wundef CFLAGS += -Wundef
CFLAGS += -Wpointer-arith CFLAGS += -Wpointer-arith
#CFLAGS += -Wcast-align CFLAGS += -Wcast-align
CFLAGS += -Wwrite-strings CFLAGS += -Wwrite-strings
CFLAGS += -Wlogical-op CFLAGS += -Wlogical-op
CFLAGS += -Wmissing-parameter-type CFLAGS += -Wmissing-parameter-type

@ -209,6 +209,7 @@ CFLAGS += -fno-inline-small-functions
CFLAGS += -fpack-struct CFLAGS += -fpack-struct
CFLAGS += -fshort-enums CFLAGS += -fshort-enums
CFLAGS += -fno-strict-aliasing CFLAGS += -fno-strict-aliasing
CFLAGS += -fno-split-wide-types
CFLAGS += -Wa,-adhlns=$(<:%.c=$(OBJDIR)/%.lst) CFLAGS += -Wa,-adhlns=$(<:%.c=$(OBJDIR)/%.lst)
CFLAGS += $(patsubst %,-I%,$(EXTRAINCDIRS)) CFLAGS += $(patsubst %,-I%,$(EXTRAINCDIRS))
CFLAGS += $(CSTANDARD) CFLAGS += $(CSTANDARD)

@ -52,12 +52,12 @@ USB_ClassInfo_AOA_Host_t AndroidDevice_AOA_Interface =
.PropertyStrings = .PropertyStrings =
{ {
.Manufacturer = "Dean Camera", [AOA_STRING_Manufacturer] = "Dean Camera",
.Model = "LUFA Android Demo", [AOA_STRING_Model] = "LUFA Android Demo",
.Description = "LUFA Android Demo", [AOA_STRING_Description] = "LUFA Android Demo",
.Version = "1.0", [AOA_STRING_Version] = "1.0",
.URI = "http://www.lufa-lib.org", [AOA_STRING_URI] = "http://www.lufa-lib.org",
.Serial = "0000000012345678", [AOA_STRING_Serial] = "0000000012345678",
}, },
}, },
}; };

@ -63,6 +63,7 @@
* - Hiduino, a USB-MIDI replacement firmware for the Arduino Uno: http://code.google.com/p/hiduino/ * - Hiduino, a USB-MIDI replacement firmware for the Arduino Uno: http://code.google.com/p/hiduino/
* - Ikea RGB LED USB modification: http://slashhome.se/p/projects/id/ikea_dioder_usb/#project * - Ikea RGB LED USB modification: http://slashhome.se/p/projects/id/ikea_dioder_usb/#project
* - IR Remote to Keyboard decoder: http://netzhansa.blogspot.com/2010/04/our-living-room-hi-fi-setup-needs-mp3.html * - IR Remote to Keyboard decoder: http://netzhansa.blogspot.com/2010/04/our-living-room-hi-fi-setup-needs-mp3.html
* - Jukebox panic button: http://thinkl33t.co.uk/the-panic-button
* - LED Panel controller: http://projects.peterpolidoro.net/caltech/panelscontroller/panelscontroller.htm * - LED Panel controller: http://projects.peterpolidoro.net/caltech/panelscontroller/panelscontroller.htm
* - Linux Secure Storage Dongle: http://github.com/TomMD/teensy * - Linux Secure Storage Dongle: http://github.com/TomMD/teensy
* - LUFA powered DDR dance mat (French): http://logicien-parfait.fr/dokuwiki/doku.php?id=projet:ddr_repair * - LUFA powered DDR dance mat (French): http://logicien-parfait.fr/dokuwiki/doku.php?id=projet:ddr_repair

Loading…
Cancel
Save