Skip to content

This is a Zephyr RTOS Module for ST25DV (NFC chip)

Notifications You must be signed in to change notification settings

digital-logic-sa/st25dv

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

21 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ST25DV driver module for Zephyr

Setup

To add the driver to your Zephyr project, set CONFIG_LIBST25DV=y in your prj.conf, and then run west update

DTS

Example of device tree :

&i2c2 {
    pinctrl-0 = <&i2c2_scl_pb13 &i2c2_sda_pb14>;
    pinctrl-names = "default";
    status = "okay";
    clock-frequency = <I2C_BITRATE_FAST>;

    st25dv: st25dv@a6 {
        compatible = "st,st25dv";
        reg = <0xa6>;
        interrupt-gpios = <&gpiob 15 GPIO_ACTIVE_LOW>;
        status = "okay";
    };
};

About

This is a Zephyr RTOS Module for ST25DV (NFC chip)

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C 99.8%
  • CMake 0.2%