zephyr/samples/drivers/i2c_fujitsu_fram
Gerard Marull-Paretas c7b5b3c419 samples: migrate includes to contain <zephyr/...> prefix
In order to bring consistency in-tree, migrate all samples to the use
the new prefix <zephyr/...>. Note that the conversion has been scripted:

```python
from pathlib import Path
import re

EXTENSIONS = ("c", "h", "cpp", "rst")

for p in Path(".").glob("samples/**/*"):
    if not p.is_file() or p.suffix and p.suffix[1:] not in EXTENSIONS:
        continue

    content = ""
    with open(p) as f:
        for line in f:
            m = re.match(r"^(.*)#include <(.*)>(.*)$", line)
            if (m and
                not m.group(2).startswith("zephyr/") and
                (Path(".") / "include" / "zephyr" / m.group(2)).exists()):
                content += (
                    m.group(1) +
                    "#include <zephyr/" + m.group(2) +">" +
                    m.group(3) + "\n"
                )
            else:
                content += line

    with open(p, "w") as f:
        f.write(content)
```

Signed-off-by: Gerard Marull-Paretas <gerard.marull@nordicsemi.no>
2022-05-06 11:29:59 +02:00
..
src samples: migrate includes to contain <zephyr/...> prefix 2022-05-06 11:29:59 +02:00
CMakeLists.txt
README.rst
prj.conf
sample.yaml

README.rst

.. _i2c_fujitsu_fram:

I2C Fujitsu FRAM
################

Overview
********
This is a sample app to read and write the Fujitsu MB85RC256V FRAM chip via I2C
on the Quark SE Sensor Subsystem.

This assumes the slave address of FRAM is 0x50, where A0, A1, and A2 are all
tied to ground.

Building and Running
********************

This project can be built and executed on as follows:

.. zephyr-app-commands::
   :zephyr-app: samples/drivers/i2c_fujitsu_fram
   :host-os: unix
   :board: quark_se_c1000_devboard
   :goals: run
   :compact:


Sample Output
=============

.. code-block:: console

    Wrote 0xAE to address 0x00.
    Wrote 0x86 to address 0x01.
    Read 0xAE from address 0x00.
    Read 0x86 from address 0x01.
    Wrote 16 bytes to address 0x00.
    Read 16 bytes from address 0x00.
    Data comparison successful.