From 806725d560858c2018611fc4e7693d56bb2d29d5 Mon Sep 17 00:00:00 2001 From: Michelle Bergeron Date: Fri, 25 Aug 2017 13:45:41 -0700 Subject: Remove gallery.xml --- sensors/ADXL345Acc/Gallery.xml | 161 --------------------- sensors/Activity/Gallery.xml | 160 --------------------- sensors/CustomSensors/Gallery.xml | 168 ---------------------- sensors/Pedometer/Gallery.xml | 160 --------------------- sensors/SimpleDeviceOrientationSensor/Gallery.xml | 160 --------------------- 5 files changed, 809 deletions(-) delete mode 100644 sensors/ADXL345Acc/Gallery.xml delete mode 100644 sensors/Activity/Gallery.xml delete mode 100644 sensors/CustomSensors/Gallery.xml delete mode 100644 sensors/Pedometer/Gallery.xml delete mode 100644 sensors/SimpleDeviceOrientationSensor/Gallery.xml diff --git a/sensors/ADXL345Acc/Gallery.xml b/sensors/ADXL345Acc/Gallery.xml deleted file mode 100644 index 2d3eabf5..00000000 --- a/sensors/ADXL345Acc/Gallery.xml +++ /dev/null @@ -1,161 +0,0 @@ - - - - - ADXL345Accelerometer - - - - - - - - - - - - -

The ADXL345Accelerometer sample shows how to write a UMDF v2 driver to control an ADXL345 accelerometer chip.

-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - -
-
-
- - -
- -

To install the sample driver, follow these steps:

- - Ensure that the driver builds without errors. - Ensure the appropriate hardware resources have been assigned in the ACPI table using ASL. A device node with HWID ACPI\ADXL345Acc should be created. - Copy the DLL and INF files to a separate folder. - Enter the command "devcon.exe update ADXL345Acc.inf ACPI\ADXL345Acc" to install the driver on an existing device node. You can find the devcon.exe program in the tools\devcon folder where you installed the WDK. - -
-
-
- File manifest - -

The following source files are in the src\Sensors\ADXL345Acc folder and are used to build the ADXL345Acc.dll and ADXL345Acc.inf files.

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
FileDescription
-

device.h, device.cpp

-
-

Implements the driver's WDF PnP event callbacks and helper methods

-
-

client.cpp

-
-

Implements the driver's callback functions from the class extension to the ADXL345 accelerometer.

-
-

driver.h, driver.cpp

-
-

WDF driver entry event callbacks and helper methods

-
-

ADXL345.h

-
-

Device specific definitions.

-
-

makefile.inc

-
-

Defines custom build actions. Includes the conversion of the .INX file into a .INF file.

-
-

SensorsTrace.h

-
-

Implementation the sensor traces files.

-
-

ADXL345Acc.ctl

-
-

Declaration of driver's tracing GUID

-
-

ADXL345Acc.inx

-
-

Describes the installation of the driver. The build process converts this into a .INF.

-
-
-
-
-
-
- - - - - -
diff --git a/sensors/Activity/Gallery.xml b/sensors/Activity/Gallery.xml deleted file mode 100644 index bb6e792a..00000000 --- a/sensors/Activity/Gallery.xml +++ /dev/null @@ -1,160 +0,0 @@ - - - - - Activity - - - - - - - - - - - - -

The activity sensor sample shows how to write a UMDF v2 driver to control a virtual activity sensor.

-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - -
-
-
- - -
- -

To install the sample driver, follow these steps:

- - Ensure that the driver builds without errors. - Copy the DLL and INF files to a separate folder. - Enter the command "devcon.exe update Activity.inf ACPI\<HWID>" to install the driver on an existing device node. You can find the devcon.exe program in the tools\devcon folder where you installed the WDK. - -
-
-
- File manifest - -

The following source files are in the src\Sensors\Activity folder and are used to build the Activity.dll and Activity.inf files.

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
FileDescription
-

device.h, device.cpp

-
-

Implements the driver's WDF PnP event callbacks and helper methods

-
-

client.cpp

-
-

Implements the driver's callback functions from the class extension to activity sensors.

-
-

driver.h, driver.cpp

-
-

WDF driver entry event callbacks and helper methods

-
-

hardwaresimulator.h, hardwaresimulator.cpp

-
-

Hardware simulator implementation

-
-

makefile.inc

-
-

Defines custom build actions. Includes the conversion of the .INX file into a .INF file.

-
-

SensorsTrace.h

-
-

Implementation the sensor traces files.

-
-

Activity.ctl

-
-

Declaration of driver's tracing GUID

-
-

Activity.inx

-
-

Describes the installation of the driver. The build process converts this into a .INF.

-
-
-
-
-
-
- - - - - -
diff --git a/sensors/CustomSensors/Gallery.xml b/sensors/CustomSensors/Gallery.xml deleted file mode 100644 index 8f84093a..00000000 --- a/sensors/CustomSensors/Gallery.xml +++ /dev/null @@ -1,168 +0,0 @@ - - - - - CustomSensors - - - - - - - - - - - - -

The CustomSensors sample shows how to write a UMDF v2 driver to control a virtual CO2 sensor.

-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - -
-
-
- - -
- -

To install the sample driver, follow these steps:

- - Ensure that the driver builds without errors. - Copy the DLL and INF files to a separate folder. - Enter the command "devcon.exe update CustomSensors.inf ACPI\<HWID>" to install the driver on an existing device node. You can find the devcon.exe program in the tools\devcon folder where you installed the WDK. - -
-
-
- File manifest - -

The following source files are in the src\Sensors\CustomSensors folder and are used to build the CustomSensors.dll and CustomSensors.inf files.

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
FileDescription
-

device.h, device.cpp

-
-

Implements the driver's WDF PnP event callbacks and helper methods

-
-

client.cpp

-
-

Implements the driver's callback functions from the class extension to custom sensors.

-
-

driver.h, driver.cpp

-
-

WDF driver entry event callbacks and helper methods

-
-

hardwaresimulator.h, hardwaresimulator.cpp

-
-

Hardware simulator implementation

-
-

makefile.inc

-
-

Defines custom build actions. Includes the conversion of the .INX file into a .INF file.

-
-

SensorsTrace.h

-
-

Implementation the sensor traces files.

-
-

CustomSensors.ctl

-
-

Declaration of driver's tracing GUID

-
-

CustomSensor.inx

-
-

Describes the installation of the driver. The build process converts this into a .INF.

-
-

Trace.h

-
-

Sets up WPP tracing.

-
-
-
-
-
-
- - - - - -
diff --git a/sensors/Pedometer/Gallery.xml b/sensors/Pedometer/Gallery.xml deleted file mode 100644 index ba572bcf..00000000 --- a/sensors/Pedometer/Gallery.xml +++ /dev/null @@ -1,160 +0,0 @@ - - - - - Pedometer - - - - - - - - - - - - -

The Pedometer sample shows how to write a UMDF v2 driver to control a virtual Pedometer sensor.

-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - -
-
-
- - -
- -

To install the sample driver, follow these steps:

- - Ensure that the driver builds without errors. - Copy the DLL and INF files to a separate folder. - Enter the command "devcon.exe update Pedometer.inf ACPI\<HWID>" to install the driver on an existing device node. You can find the devcon.exe program in the tools\devcon folder where you installed the WDK. - -
-
-
- File manifest - -

The following source files are in the src\Sensors\Pedometer folder and are used to build the Pedometer.dll and Pedometer.inf files.

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
FileDescription
-

device.h, device.cpp

-
-

Implements the driver's WDF PnP event callbacks and helper methods

-
-

client.cpp

-
-

Implements the driver's callback functions from the class extension to pedometer sensors.

-
-

driver.h, driver.cpp

-
-

WDF driver entry event callbacks and helper methods

-
-

hardwaresimulator.h, hardwaresimulator.cpp

-
-

Hardware simulator implementation

-
-

makefile.inc

-
-

Defines custom build actions. Includes the conversion of the .INX file into a .INF file.

-
-

SensorsTrace.h

-
-

Implementation the sensor traces files.

-
-

Pedometer.ctl

-
-

Declaration of driver's tracing GUID

-
-

Pedometer.inx

-
-

Describes the installation of the driver. The build process converts this into a .INF.

-
-
-
-
-
-
- - - - - -
diff --git a/sensors/SimpleDeviceOrientationSensor/Gallery.xml b/sensors/SimpleDeviceOrientationSensor/Gallery.xml deleted file mode 100644 index 8fbb8b8c..00000000 --- a/sensors/SimpleDeviceOrientationSensor/Gallery.xml +++ /dev/null @@ -1,160 +0,0 @@ - - - - - SimpleDeviceOrientationSensor - - - - - - - - - - - - -

The SimpleDeviceOrientationSensor sample shows how to write a UMDF v2 sensor driver to output Simple Device Orientation values.

-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - -
-
-
- - -
- -

To install the sample driver, follow these steps:

- - Ensure that the driver builds without errors. - Copy the DLL and INF files to a separate folder. - Enter the command "devcon.exe update SimpleDeviceOrientationSensor.inf ACPI\<HWID>" to install the driver on an existing device node. You can find the devcon.exe program in the tools\devcon folder where you installed the WDK. - -
-
-
- File manifest - -

The following source files are in the src\Sensors\SimpleDeviceOrientationSensor folder and are used to build the SimpleDeviceOrientationSensor.dll and SimpleDeviceOrientationSensor.inf files.

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
FileDescription
-

device.h, device.cpp

-
-

Implements the driver's WDF PnP event callbacks and helper methods

-
-

client.cpp

-
-

Implements the driver's callback functions from the class extension to simple device orientation sensors.

-
-

driver.h, driver.cpp

-
-

WDF driver entry event callbacks and helper methods

-
-

hardwaresimulator.h, hardwaresimulator.cpp

-
-

Hardware simulator implementation

-
-

makefile.inc

-
-

Defines custom build actions. Includes the conversion of the .INX file into a .INF file.

-
-

SensorsTrace.h

-
-

Implementation the sensor traces files.

-
-

SimpleDeviceOrientationSensor.ctl

-
-

Declaration of driver's tracing GUID

-
-

SimpleDeviceOrientationSensor.inx

-
-

Describes the installation of the driver. The build process converts this into a .INF.

-
-
-
-
-
-
- - - - - -
-- cgit v1.3.1