# nca9555 **Repository Path**: shangwx/nca9555 ## Basic Information - **Project Name**: nca9555 - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: main - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2025-09-24 - **Last Updated**: 2025-09-24 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README ## dts 配置 ```C #include ... &i2c3 { status = "okay"; pinctrl-names = "default"; pinctrl-0 = <&i2c3m1_xfer>; nca9555: mfd-gpio@20 { compatible = "nca9555"; reg = <0x20>; status = "okay"; nca9555_gpio: gpio-normal@20 { compatible = "nca9555-gpio"; gpio-controller; #gpio-cells = <2>; }; }; }; ``` ## 引用GPIO ```C vcc5v0_usb: vcc5v0-usb { compatible = "regulator-fixed"; regulator-name = "vcc5v0_usb"; regulator-min-microvolt = <5000000>; regulator-max-microvolt = <5000000>; enable-active-high; gpio = <&nca9555_gpio IO_00 GPIO_ACTIVE_HIGH>; }; ```