zephyr/samples/drivers/i2c_fujitsu_fram
Kumar Gala a1b77fd589 zephyr: replace zephyr integer types with C99 types
git grep -l 'u\(8\|16\|32\|64\)_t' | \
		xargs sed -i "s/u\(8\|16\|32\|64\)_t/uint\1_t/g"
	git grep -l 's\(8\|16\|32\|64\)_t' | \
		xargs sed -i "s/s\(8\|16\|32\|64\)_t/int\1_t/g"

Signed-off-by: Kumar Gala <kumar.gala@linaro.org>
2020-06-08 08:23:57 -05:00
..
src zephyr: replace zephyr integer types with C99 types 2020-06-08 08:23:57 -05:00
CMakeLists.txt samples: make find_package(Zephyr...) REQUIRED 2020-05-29 10:47:25 +02:00
prj.conf move driver samples to samples/drivers 2016-02-11 13:08:44 -05:00
README.rst samples: drivers: i2c_fujitsu: Change readme to rst format 2020-05-15 17:18:56 +02:00
sample.yaml tests: fix test identifiers 2019-12-09 15:53:44 -05:00

.. _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.