Back to home page

OSCL-LXR

 
 

    


0001 # SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
0002 %YAML 1.2
0003 ---
0004 $id: http://devicetree.org/schemas/iio/accel/murata,sca3300.yaml#
0005 $schema: http://devicetree.org/meta-schemas/core.yaml#
0006 
0007 title: Murata SCA3300 Accelerometer
0008 
0009 description: |
0010   3-axis industrial accelerometer with digital SPI interface
0011   https://www.murata.com/en-global/products/sensor/accel/sca3300
0012 
0013 maintainers:
0014   - Tomas Melin <tomas.melin@vaisala.com>
0015 
0016 properties:
0017   compatible:
0018     enum:
0019       - murata,sca3300
0020       - murata,scl3300
0021 
0022   reg:
0023     maxItems: 1
0024 
0025   spi-max-frequency:
0026     maximum: 8000000
0027 
0028 required:
0029   - compatible
0030   - reg
0031 
0032 additionalProperties: false
0033 
0034 examples:
0035   - |
0036     spi {
0037         #address-cells = <1>;
0038         #size-cells = <0>;
0039         accelerometer@0 {
0040             compatible = "murata,sca3300";
0041             reg = <0x0>;
0042             spi-max-frequency = <4000000>;
0043         };
0044     };
0045 ...