mirror of
https://github.com/Dasharo/zephyr.git
synced 2026-03-06 14:57:20 -08:00
As of today <zephyr/zephyr.h> is 100% equivalent to <zephyr/kernel.h>. This patch proposes to then include <zephyr/kernel.h> instead of <zephyr/zephyr.h> since it is more clear that you are including the Kernel APIs and (probably) nothing else. <zephyr/zephyr.h> sounds like a catch-all header that may be confusing. Most applications need to include a bunch of other things to compile, e.g. driver headers or subsystem headers like BT, logging, etc. The idea of a catch-all header in Zephyr is probably not feasible anyway. Reason is that Zephyr is not a library, like it could be for example `libpython`. Zephyr provides many utilities nowadays: a kernel, drivers, subsystems, etc and things will likely grow. A catch-all header would be massive, difficult to keep up-to-date. It is also likely that an application will only build a small subset. Note that subsystem-level headers may use a catch-all approach to make things easier, though. NOTE: This patch is **NOT** removing the header, just removing its usage in-tree. I'd advocate for its deprecation (add a #warning on it), but I understand many people will have concerns. Signed-off-by: Gerard Marull-Paretas <gerard.marull@nordicsemi.no>
.. _ti_tmp116_sample:
TI_TMP116 Sample
################
Description
***********
This sample application periodically takes temperature readings using the ti_tmp116
sensor driver. The result is written to the console. This sample also included the code
to use the features provided by TMP117, which is a sensor similar to TMP116
Requirements
************
This sample needs a TI TMP116 or TI TMP117 sensor connected to the target board's I2C
connector.
Wiring
******
This sample is tested with Nucleo STM32F401RE board.
The sensor operates at 3.3V and uses I2C to communicate with the board.
External Wires:
* Breakout **GND** pin <--> Nucleo **GND** pin
* Breakout **VCC** pin <--> Nucleo **3V3** pin
* Breakout **SDA** pin <--> Nucleo **CN5-D14** pin
* Breakout **SCL** pin <--> Nucleo **CN5-D15** pin
Building and Running
********************
In order to build the sample, connect the board to the computer with a USB cable and enter the
following commands:
.. zephyr-app-commands::
:zephyr-app: samples/sensor/tmp116
:board: nucleo_f401re
:goals: build flash
:compact:
Sample Output
*************
The output can be seen via a terminal emulator (e.g. minicom). Connect the board with a USB cable
to the computer and open /dev/ttyACM0 with the below serial settings:
* Baudrate: 115200
* Parity: None
* Data: 8
* Stop bits: 1
The output should look like this:
.. code-block:: console
Device TMP116 - 0x200010a8 is ready
temp is 26.7031250 oC
temp is 26.7109375 oC
...