am7xxx: add support for Philips/SagemCom PicoPix PPX 2055
authorAntonio Ospite <ospite@studenti.unina.it>
Sun, 14 Oct 2012 16:03:54 +0000 (18:03 +0200)
committerAntonio Ospite <ospite@studenti.unina.it>
Sun, 14 Oct 2012 16:03:54 +0000 (18:03 +0200)
README.asciidoc
contrib/55-am7xxx.rules
doc/DoxygenMainpage.dox
src/am7xxx.c

index c037521..7ad02de 100644 (file)
@@ -55,7 +55,7 @@ Examples of devices based on AM7XXX are:
       * http://support.acer.com/product/default.aspx?modelId=3888
 
   - Philips/SagemCom PicoPix projectors (PPX 1020, PPX 1230, PPX 1430, PPX
       * http://support.acer.com/product/default.aspx?modelId=3888
 
   - Philips/SagemCom PicoPix projectors (PPX 1020, PPX 1230, PPX 1430, PPX
-    1630):
+    1630, PPX 2055):
       * http://www.philips.co.uk/c/pocket-projector/179840/cat/
       * http://www.sagemcom.com/EN/products/image-sound/pico-video-projectors.html
 
       * http://www.philips.co.uk/c/pocket-projector/179840/cat/
       * http://www.sagemcom.com/EN/products/image-sound/pico-video-projectors.html
 
index 8e9dd00..53643ac 100644 (file)
@@ -6,3 +6,5 @@ ACTION=="add", SUBSYSTEM=="usb", ATTRS{idVendor}=="1de1", ATTRS{idProduct}=="550
 ACTION=="add", SUBSYSTEM=="usb", ATTRS{idVendor}=="08ca", ATTRS{idProduct}=="2144", MODE="0660", GROUP="plugdev"
 # Philips/Sagemcom PicoPix 1020
 ACTION=="add", SUBSYSTEM=="usb", ATTRS{idVendor}=="21e7", ATTRS{idProduct}=="000e", MODE="0660", GROUP="plugdev"
 ACTION=="add", SUBSYSTEM=="usb", ATTRS{idVendor}=="08ca", ATTRS{idProduct}=="2144", MODE="0660", GROUP="plugdev"
 # Philips/Sagemcom PicoPix 1020
 ACTION=="add", SUBSYSTEM=="usb", ATTRS{idVendor}=="21e7", ATTRS{idProduct}=="000e", MODE="0660", GROUP="plugdev"
+# Philips/Sagemcom PicoPix 2055
+ACTION=="add", SUBSYSTEM=="usb", ATTRS{idVendor}=="21e7", ATTRS{idProduct}=="0016", MODE="0660", GROUP="plugdev"
index 5b79195..1754ea9 100644 (file)
@@ -24,6 +24,7 @@ Check @link am7xxx.h @endlink for the public API documentation.
 - Acer C112
 - Aiptek PocketCinema T25
 - Philips/SagemCom PicoPix 1020
 - Acer C112
 - Aiptek PocketCinema T25
 - Philips/SagemCom PicoPix 1020
+- Philips/SagemCom PicoPix 2055
 
 @section libam7xxxDesignOverview Design Overview
 
 
 @section libam7xxxDesignOverview Design Overview
 
index 5b98b84..0daa259 100644 (file)
@@ -91,6 +91,11 @@ static struct am7xxx_usb_device_descriptor supported_devices[] = {
                .vendor_id  = 0x21e7,
                .product_id = 0x000e,
        },
                .vendor_id  = 0x21e7,
                .product_id = 0x000e,
        },
+       {
+               .name       = "Philips/Sagemcom PicoPix 2055",
+               .vendor_id  = 0x21e7,
+               .product_id = 0x0016,
+       },
 };
 
 /* The header size on the wire is known to be always 24 bytes, regardless of
 };
 
 /* The header size on the wire is known to be always 24 bytes, regardless of