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>
|
||
|---|---|---|
| .. | ||
| boards | ||
| src | ||
| CMakeLists.txt | ||
| prj.conf | ||
| README.rst | ||
| sample.yaml | ||
.. _mpr-sample: MPR Pressure Sensor ################### Overview ******** This sample application periodically (1Hz) measures atmospheric pressure in kilopascal. The result is written to the console. References ********** - MPR: https://sensing.honeywell.com/micropressure-mpr-series Wiring ****** This sample uses an MPRLS0025PA00001A sensor controlled using the i2c interface. Connect **VIN**, **GND** and Interface: **SDA**, **SCL**. Building and Running ******************** This project outputs sensor data to the console. It requires a sensor from the MPR series. It does not work on QEMU. In the sample below the :ref:`arduino_due` board is used. .. zephyr-app-commands:: :zephyr-app: samples/sensor/mpr :board: arduino_due :goals: build flash Sample Output ************* .. code-block:: console pressure value: 101.976303 kPa pressure value: 101.986024 kPa pressure value: 101.989736 kPa pressure value: 101.987424 kPa pressure value: 101.992099 kPa pressure value: 101.989171 kPa pressure value: 101.984226 kPa <repeats endlessly>