includes: prefer <zephyr/kernel.h> over <zephyr/zephyr.h>
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>
This commit is contained in:
parent
a6fb18541d
commit
79e6b0e0f6
|
@ -3,7 +3,7 @@
|
|||
*
|
||||
* SPDX-License-Identifier: Apache-2.0
|
||||
*/
|
||||
#include <zephyr/zephyr.h>
|
||||
#include <zephyr/kernel.h>
|
||||
#include <zephyr/arch/arm/aarch32/cortex_a_r/cmsis.h>
|
||||
|
||||
void z_arm_tcm_disable_ecc(void)
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
* SPDX-License-Identifier: Apache-2.0
|
||||
*/
|
||||
|
||||
#include <zephyr/zephyr.h>
|
||||
#include <zephyr/kernel.h>
|
||||
#include <aarch32/cortex_m/cmse.h>
|
||||
|
||||
int arm_cmse_mpu_region_get(uint32_t addr)
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
* SPDX-License-Identifier: Apache-2.0
|
||||
*/
|
||||
|
||||
#include <zephyr/zephyr.h>
|
||||
#include <zephyr/kernel.h>
|
||||
#include <zephyr/tracing/tracing.h>
|
||||
#include <zephyr/arch/cpu.h>
|
||||
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
/* Copyright (c) 2022 Intel Corporation
|
||||
* SPDX-License-Identifier: Apache-2.0
|
||||
*/
|
||||
#include <zephyr/zephyr.h>
|
||||
#include <zephyr/kernel.h>
|
||||
|
||||
void arch_timing_init(void)
|
||||
{
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
* SPDX-License-Identifier: Apache-2.0
|
||||
*/
|
||||
|
||||
#include <zephyr/zephyr.h>
|
||||
#include <zephyr/kernel.h>
|
||||
#include <zephyr/init.h>
|
||||
#include <zephyr/logging/log.h>
|
||||
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
* SPDX-License-Identifier: Apache-2.0
|
||||
*/
|
||||
|
||||
#include <zephyr/zephyr.h>
|
||||
#include <zephyr/kernel.h>
|
||||
|
||||
extern void wakeup_cpu1(void);
|
||||
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
* SPDX-License-Identifier: Apache-2.0
|
||||
*/
|
||||
|
||||
#include <zephyr/zephyr.h>
|
||||
#include <zephyr/kernel.h>
|
||||
#include <zephyr/init.h>
|
||||
#include <zephyr/logging/log.h>
|
||||
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
* SPDX-License-Identifier: Apache-2.0
|
||||
*/
|
||||
|
||||
#include <zephyr/zephyr.h>
|
||||
#include <zephyr/kernel.h>
|
||||
#include <zephyr/init.h>
|
||||
#include <zephyr/drivers/gpio.h>
|
||||
#include <zephyr/devicetree.h>
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
* SPDX-License-Identifier: Apache-2.0
|
||||
*/
|
||||
|
||||
#include <zephyr/zephyr.h>
|
||||
#include <zephyr/kernel.h>
|
||||
#include <zephyr/init.h>
|
||||
#include <stm32_ll_adc.h>
|
||||
#include <zephyr/devicetree.h>
|
||||
|
|
|
@ -225,7 +225,7 @@ up from where it was before restart.
|
|||
|
||||
.. code-block:: c
|
||||
|
||||
#include <zephyr/zephyr.h>
|
||||
#include <zephyr/kernel.h>
|
||||
#include <zephyr/sys/reboot.h>
|
||||
#include <zephyr/settings/settings.h>
|
||||
#include <zephyr/sys/printk.h>
|
||||
|
|
|
@ -340,7 +340,6 @@ state machine can be implemented using Zephyr :ref:`events`.
|
|||
Code::
|
||||
|
||||
#include <zephyr/kernel.h>
|
||||
#include <zephyr/zephyr.h>
|
||||
#include <zephyr/drivers/gpio.h>
|
||||
#include <zephyr/smf.h>
|
||||
|
||||
|
|
|
@ -9,7 +9,7 @@
|
|||
#include <zephyr/drivers/adc.h>
|
||||
#include <zephyr/logging/log.h>
|
||||
#include <zephyr/drivers/i2c.h>
|
||||
#include <zephyr/zephyr.h>
|
||||
#include <zephyr/kernel.h>
|
||||
#include <zephyr/sys/byteorder.h>
|
||||
#include <zephyr/sys/util.h>
|
||||
|
||||
|
|
|
@ -11,7 +11,7 @@
|
|||
#include <zephyr/drivers/adc.h>
|
||||
#include <zephyr/logging/log.h>
|
||||
#include <zephyr/drivers/i2c.h>
|
||||
#include <zephyr/zephyr.h>
|
||||
#include <zephyr/kernel.h>
|
||||
#include <zephyr/sys/byteorder.h>
|
||||
#include <zephyr/sys/util.h>
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
#define MPXXDTYY_H
|
||||
|
||||
#include <zephyr/audio/dmic.h>
|
||||
#include <zephyr/zephyr.h>
|
||||
#include <zephyr/kernel.h>
|
||||
#include <zephyr/device.h>
|
||||
#include "OpenPDMFilter.h"
|
||||
|
||||
|
|
|
@ -9,7 +9,7 @@
|
|||
#include <errno.h>
|
||||
#include <stddef.h>
|
||||
|
||||
#include <zephyr/zephyr.h>
|
||||
#include <zephyr/kernel.h>
|
||||
#include <zephyr/arch/cpu.h>
|
||||
|
||||
#include <zephyr/init.h>
|
||||
|
|
|
@ -9,7 +9,7 @@
|
|||
#include <errno.h>
|
||||
#include <stddef.h>
|
||||
|
||||
#include <zephyr/zephyr.h>
|
||||
#include <zephyr/kernel.h>
|
||||
|
||||
#include <zephyr/init.h>
|
||||
#include <zephyr/drivers/uart.h>
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
* SPDX-License-Identifier: Apache-2.0
|
||||
*/
|
||||
|
||||
#include <zephyr/zephyr.h>
|
||||
#include <zephyr/kernel.h>
|
||||
#include <zephyr/device.h>
|
||||
#include <zephyr/init.h>
|
||||
#include <zephyr/sys/util.h>
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
|
||||
#define DT_DRV_COMPAT nxp_kinetis_flexcan
|
||||
|
||||
#include <zephyr/zephyr.h>
|
||||
#include <zephyr/kernel.h>
|
||||
#include <zephyr/sys/atomic.h>
|
||||
#include <zephyr/drivers/can.h>
|
||||
#include <zephyr/drivers/can/transceiver.h>
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
* SPDX-License-Identifier: Apache-2.0
|
||||
*/
|
||||
|
||||
#include <zephyr/zephyr.h>
|
||||
#include <zephyr/kernel.h>
|
||||
#include <zephyr/drivers/spi.h>
|
||||
#include <zephyr/drivers/dac.h>
|
||||
#include <zephyr/logging/log.h>
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
*/
|
||||
#define DT_DRV_COMPAT microchip_mcp4725
|
||||
|
||||
#include <zephyr/zephyr.h>
|
||||
#include <zephyr/kernel.h>
|
||||
#include <zephyr/drivers/i2c.h>
|
||||
#include <zephyr/drivers/dac.h>
|
||||
#include <zephyr/logging/log.h>
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
|
||||
#define DT_DRV_COMPAT microchip_mcp4728
|
||||
|
||||
#include <zephyr/zephyr.h>
|
||||
#include <zephyr/kernel.h>
|
||||
#include <zephyr/drivers/dac.h>
|
||||
#include <zephyr/drivers/i2c.h>
|
||||
#include <zephyr/logging/log.h>
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
|
||||
#define DT_DRV_COMPAT nxp_kinetis_dac
|
||||
|
||||
#include <zephyr/zephyr.h>
|
||||
#include <zephyr/kernel.h>
|
||||
#include <zephyr/drivers/dac.h>
|
||||
#include <zephyr/logging/log.h>
|
||||
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
|
||||
#define DT_DRV_COMPAT nxp_kinetis_dac32
|
||||
|
||||
#include <zephyr/zephyr.h>
|
||||
#include <zephyr/kernel.h>
|
||||
#include <zephyr/drivers/dac.h>
|
||||
#include <zephyr/logging/log.h>
|
||||
#include <zephyr/drivers/pinctrl.h>
|
||||
|
|
|
@ -29,7 +29,7 @@
|
|||
#include <zephyr/logging/log.h>
|
||||
#include <zephyr/sys/byteorder.h>
|
||||
#include <zephyr/sys/util.h>
|
||||
#include <zephyr/zephyr.h>
|
||||
#include <zephyr/kernel.h>
|
||||
LOG_MODULE_REGISTER(max7219, CONFIG_DISPLAY_LOG_LEVEL);
|
||||
|
||||
#define MAX7219_SEGMENTS_PER_DIGIT 8
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
#ifndef ST7735R_DISPLAY_DRIVER_H__
|
||||
#define ST7735R_DISPLAY_DRIVER_H__
|
||||
|
||||
#include <zephyr/zephyr.h>
|
||||
#include <zephyr/kernel.h>
|
||||
|
||||
#define ST7735R_CMD_SW_RESET 0x01
|
||||
#define ST7735R_CMD_RDDID 0x04
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
#ifndef ST7789V_DISPLAY_DRIVER_H__
|
||||
#define ST7789V_DISPLAY_DRIVER_H__
|
||||
|
||||
#include <zephyr/zephyr.h>
|
||||
#include <zephyr/kernel.h>
|
||||
|
||||
#define ST7789V_CMD_NOP 0x00
|
||||
#define ST7789V_CMD_SW_RESET 0x01
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
* a suitable LED matrix controller driver.
|
||||
*/
|
||||
|
||||
#include <zephyr/zephyr.h>
|
||||
#include <zephyr/kernel.h>
|
||||
#include <zephyr/init.h>
|
||||
#include <string.h>
|
||||
#include <zephyr/sys/printk.h>
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
|
||||
#define DT_DRV_COMPAT intel_ibecc
|
||||
|
||||
#include <zephyr/zephyr.h>
|
||||
#include <zephyr/kernel.h>
|
||||
#include <zephyr/device.h>
|
||||
#include <zephyr/drivers/pcie/pcie.h>
|
||||
|
||||
|
|
|
@ -14,7 +14,7 @@
|
|||
#include <zephyr/drivers/i2c.h>
|
||||
#include <zephyr/drivers/spi.h>
|
||||
#include <zephyr/sys/byteorder.h>
|
||||
#include <zephyr/zephyr.h>
|
||||
#include <zephyr/kernel.h>
|
||||
|
||||
#define LOG_LEVEL CONFIG_EEPROM_LOG_LEVEL
|
||||
#include <zephyr/logging/log.h>
|
||||
|
|
|
@ -59,7 +59,7 @@
|
|||
|
||||
#include <zephyr/drivers/eeprom.h>
|
||||
#include <zephyr/drivers/flash.h>
|
||||
#include <zephyr/zephyr.h>
|
||||
#include <zephyr/kernel.h>
|
||||
#define LOG_LEVEL CONFIG_EEPROM_LOG_LEVEL
|
||||
#include <zephyr/logging/log.h>
|
||||
LOG_MODULE_REGISTER(eeprom_emulator);
|
||||
|
|
|
@ -12,7 +12,7 @@
|
|||
#include <zephyr/init.h>
|
||||
#include <soc.h>
|
||||
#include <string.h>
|
||||
#include <zephyr/zephyr.h>
|
||||
#include <zephyr/kernel.h>
|
||||
|
||||
#define PRBS_STATUS DT_INST_REG_ADDR(0)
|
||||
#define PRBS_WIDTH DT_INST_REG_SIZE(0)
|
||||
|
|
|
@ -13,7 +13,7 @@
|
|||
LOG_MODULE_REGISTER(LOG_MODULE_NAME);
|
||||
|
||||
#include <sys/types.h>
|
||||
#include <zephyr/zephyr.h>
|
||||
#include <zephyr/kernel.h>
|
||||
#include <zephyr/cache.h>
|
||||
#include <zephyr/net/ethernet.h>
|
||||
#include <ethernet/eth_stats.h>
|
||||
|
|
|
@ -16,7 +16,7 @@ LOG_MODULE_REGISTER(LOG_MODULE_NAME);
|
|||
|
||||
#include <sys/types.h>
|
||||
#include <zephyr/sys/mem_manage.h>
|
||||
#include <zephyr/zephyr.h>
|
||||
#include <zephyr/kernel.h>
|
||||
#include <zephyr/cache.h>
|
||||
#include <zephyr/net/ethernet.h>
|
||||
|
||||
|
|
|
@ -18,7 +18,7 @@ LOG_MODULE_REGISTER(LOG_MODULE_NAME);
|
|||
#define DT_DRV_COMPAT st_stm32_ethernet
|
||||
|
||||
#include <sys/types.h>
|
||||
#include <zephyr/zephyr.h>
|
||||
#include <zephyr/kernel.h>
|
||||
#include <zephyr/net/ethernet.h>
|
||||
#include <ethernet/eth.h>
|
||||
#include <zephyr/drivers/clock_control.h>
|
||||
|
|
|
@ -12,7 +12,7 @@
|
|||
LOG_MODULE_REGISTER(LOG_MODULE_NAME);
|
||||
|
||||
#include <sys/types.h>
|
||||
#include <zephyr/zephyr.h>
|
||||
#include <zephyr/kernel.h>
|
||||
#include <zephyr/net/ethernet.h>
|
||||
#include <ethernet/eth_stats.h>
|
||||
#include <zephyr/drivers/pcie/pcie.h>
|
||||
|
|
|
@ -13,7 +13,7 @@
|
|||
#include <zephyr/logging/log.h>
|
||||
LOG_MODULE_REGISTER(LOG_MODULE_NAME);
|
||||
|
||||
#include <zephyr/zephyr.h>
|
||||
#include <zephyr/kernel.h>
|
||||
#include <zephyr/device.h>
|
||||
#include <string.h>
|
||||
#include <errno.h>
|
||||
|
|
|
@ -9,7 +9,7 @@
|
|||
|
||||
#define DT_DRV_COMPAT microchip_enc424j600
|
||||
|
||||
#include <zephyr/zephyr.h>
|
||||
#include <zephyr/kernel.h>
|
||||
#include <zephyr/device.h>
|
||||
#include <string.h>
|
||||
#include <errno.h>
|
||||
|
|
|
@ -11,7 +11,7 @@
|
|||
#include <zephyr/logging/log.h>
|
||||
LOG_MODULE_REGISTER(eth_w5500, CONFIG_ETHERNET_LOG_LEVEL);
|
||||
|
||||
#include <zephyr/zephyr.h>
|
||||
#include <zephyr/kernel.h>
|
||||
#include <zephyr/device.h>
|
||||
#include <string.h>
|
||||
#include <errno.h>
|
||||
|
|
|
@ -21,7 +21,7 @@
|
|||
* RX Status and TX Status registers.
|
||||
*/
|
||||
|
||||
#include <zephyr/zephyr.h>
|
||||
#include <zephyr/kernel.h>
|
||||
#include <zephyr/device.h>
|
||||
#include <zephyr/devicetree.h>
|
||||
#include <zephyr/sys/__assert.h>
|
||||
|
|
|
@ -12,7 +12,7 @@
|
|||
* SPDX-License-Identifier: Apache-2.0
|
||||
*/
|
||||
|
||||
#include <zephyr/zephyr.h>
|
||||
#include <zephyr/kernel.h>
|
||||
#include <zephyr/device.h>
|
||||
|
||||
#include "eth_xlnx_gem_priv.h"
|
||||
|
|
|
@ -9,7 +9,7 @@
|
|||
|
||||
#include <zephyr/logging/log.h>
|
||||
|
||||
#include <zephyr/zephyr.h>
|
||||
#include <zephyr/kernel.h>
|
||||
|
||||
LOG_MODULE_REGISTER(flash_cadence_ll, CONFIG_FLASH_LOG_LEVEL);
|
||||
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
|
||||
#define DT_DRV_COMPAT nxp_imx_flexspi_hyperflash
|
||||
|
||||
#include <zephyr/zephyr.h>
|
||||
#include <zephyr/kernel.h>
|
||||
#include <errno.h>
|
||||
#include <zephyr/drivers/flash.h>
|
||||
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
* SPDX-License-Identifier: Apache-2.0
|
||||
*/
|
||||
|
||||
#include <zephyr/zephyr.h>
|
||||
#include <zephyr/kernel.h>
|
||||
#include <zephyr/devicetree.h>
|
||||
|
||||
#include <zephyr/shell/shell.h>
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
#include <zephyr/drivers/gpio.h>
|
||||
#include <zephyr/drivers/gpio/gpio_emul.h>
|
||||
#include <errno.h>
|
||||
#include <zephyr/zephyr.h>
|
||||
#include <zephyr/kernel.h>
|
||||
#include <zephyr/pm/device.h>
|
||||
|
||||
#include "gpio_utils.h"
|
||||
|
|
|
@ -12,7 +12,7 @@
|
|||
#define DT_DRV_COMPAT ti_lmp90xxx_gpio
|
||||
|
||||
#include <zephyr/drivers/gpio.h>
|
||||
#include <zephyr/zephyr.h>
|
||||
#include <zephyr/kernel.h>
|
||||
|
||||
#define LOG_LEVEL CONFIG_GPIO_LOG_LEVEL
|
||||
#include <zephyr/logging/log.h>
|
||||
|
|
|
@ -14,7 +14,7 @@
|
|||
#include <zephyr/drivers/spi.h>
|
||||
#include <zephyr/kernel.h>
|
||||
#include <zephyr/device.h>
|
||||
#include <zephyr/zephyr.h>
|
||||
#include <zephyr/kernel.h>
|
||||
|
||||
#include "gpio_utils.h"
|
||||
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
* SPDX-License-Identifier: Apache-2.0
|
||||
*/
|
||||
|
||||
#include <zephyr/zephyr.h>
|
||||
#include <zephyr/kernel.h>
|
||||
#include <zephyr/device.h>
|
||||
#include <zephyr/devicetree.h>
|
||||
#include <zephyr/drivers/gpio.h>
|
||||
|
|
|
@ -9,7 +9,7 @@
|
|||
* devices for the "vnd,i2c" devicetree compatible used in test code.
|
||||
*/
|
||||
|
||||
#include <zephyr/zephyr.h>
|
||||
#include <zephyr/kernel.h>
|
||||
#include <zephyr/drivers/i2c.h>
|
||||
|
||||
#define DT_DRV_COMPAT vnd_i2c
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
* SPDX-License-Identifier: Apache-2.0
|
||||
*/
|
||||
|
||||
#include <zephyr/zephyr.h>
|
||||
#include <zephyr/kernel.h>
|
||||
#include <stdint.h>
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
|
|
|
@ -14,7 +14,7 @@
|
|||
#include <assert.h>
|
||||
#include "soc/soc.h"
|
||||
#include <soc.h>
|
||||
#include <zephyr/zephyr.h>
|
||||
#include <zephyr/kernel.h>
|
||||
#include <zephyr/drivers/interrupt_controller/intc_esp32c3.h>
|
||||
#include <zephyr/sw_isr_table.h>
|
||||
#include <riscv/interrupt.h>
|
||||
|
|
|
@ -11,7 +11,7 @@
|
|||
* @brief Keyscan driver for the HT16K33 I2C LED driver
|
||||
*/
|
||||
|
||||
#include <zephyr/zephyr.h>
|
||||
#include <zephyr/kernel.h>
|
||||
#include <zephyr/drivers/kscan.h>
|
||||
#include <zephyr/drivers/led/ht16k33.h>
|
||||
#include <zephyr/logging/log.h>
|
||||
|
|
|
@ -14,7 +14,7 @@
|
|||
#include <zephyr/drivers/led.h>
|
||||
#include <zephyr/drivers/gpio.h>
|
||||
#include <zephyr/device.h>
|
||||
#include <zephyr/zephyr.h>
|
||||
#include <zephyr/kernel.h>
|
||||
|
||||
#include <zephyr/logging/log.h>
|
||||
LOG_MODULE_REGISTER(led_gpio, CONFIG_LED_LOG_LEVEL);
|
||||
|
|
|
@ -15,7 +15,7 @@
|
|||
#include <zephyr/drivers/pwm.h>
|
||||
#include <zephyr/device.h>
|
||||
#include <zephyr/pm/device.h>
|
||||
#include <zephyr/zephyr.h>
|
||||
#include <zephyr/kernel.h>
|
||||
#include <zephyr/sys/math_extras.h>
|
||||
|
||||
#include <zephyr/logging/log.h>
|
||||
|
|
|
@ -22,7 +22,7 @@
|
|||
#include <zephyr/drivers/i2c.h>
|
||||
#include <zephyr/drivers/led.h>
|
||||
#include <zephyr/sys/util.h>
|
||||
#include <zephyr/zephyr.h>
|
||||
#include <zephyr/kernel.h>
|
||||
|
||||
#define LOG_LEVEL CONFIG_LED_LOG_LEVEL
|
||||
#include <zephyr/logging/log.h>
|
||||
|
|
|
@ -15,7 +15,7 @@
|
|||
#include <zephyr/drivers/led.h>
|
||||
#include <zephyr/drivers/led/lp503x.h>
|
||||
#include <zephyr/device.h>
|
||||
#include <zephyr/zephyr.h>
|
||||
#include <zephyr/kernel.h>
|
||||
|
||||
#define LOG_LEVEL CONFIG_LED_LOG_LEVEL
|
||||
#include <zephyr/logging/log.h>
|
||||
|
|
|
@ -33,7 +33,7 @@
|
|||
#include <zephyr/drivers/i2c.h>
|
||||
#include <zephyr/drivers/led.h>
|
||||
#include <zephyr/device.h>
|
||||
#include <zephyr/zephyr.h>
|
||||
#include <zephyr/kernel.h>
|
||||
|
||||
#define LOG_LEVEL CONFIG_LED_LOG_LEVEL
|
||||
#include <zephyr/logging/log.h>
|
||||
|
|
|
@ -14,7 +14,7 @@
|
|||
#include <zephyr/drivers/i2c.h>
|
||||
#include <zephyr/drivers/led.h>
|
||||
#include <zephyr/sys/util.h>
|
||||
#include <zephyr/zephyr.h>
|
||||
#include <zephyr/kernel.h>
|
||||
|
||||
#define LOG_LEVEL CONFIG_LED_LOG_LEVEL
|
||||
#include <zephyr/logging/log.h>
|
||||
|
|
|
@ -15,7 +15,7 @@
|
|||
#include <zephyr/drivers/i2c.h>
|
||||
#include <zephyr/drivers/led.h>
|
||||
#include <zephyr/sys/util.h>
|
||||
#include <zephyr/zephyr.h>
|
||||
#include <zephyr/kernel.h>
|
||||
#include <zephyr/logging/log.h>
|
||||
|
||||
LOG_MODULE_REGISTER(tlc59108, CONFIG_LED_LOG_LEVEL);
|
||||
|
|
|
@ -19,7 +19,7 @@
|
|||
#include <zephyr/logging/log.h>
|
||||
LOG_MODULE_REGISTER(lpd880x);
|
||||
|
||||
#include <zephyr/zephyr.h>
|
||||
#include <zephyr/kernel.h>
|
||||
#include <zephyr/device.h>
|
||||
#include <zephyr/drivers/spi.h>
|
||||
#include <zephyr/sys/util.h>
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
|
||||
#define DT_DRV_COMPAT ti_tlc5971
|
||||
|
||||
#include <zephyr/zephyr.h>
|
||||
#include <zephyr/kernel.h>
|
||||
#include <zephyr/drivers/spi.h>
|
||||
#include <zephyr/drivers/led_strip.h>
|
||||
#include <zephyr/drivers/led_strip/tlc5971.h>
|
||||
|
|
|
@ -16,7 +16,7 @@
|
|||
#include <zephyr/logging/log.h>
|
||||
LOG_MODULE_REGISTER(ws2812_gpio);
|
||||
|
||||
#include <zephyr/zephyr.h>
|
||||
#include <zephyr/kernel.h>
|
||||
#include <soc.h>
|
||||
#include <zephyr/drivers/gpio.h>
|
||||
#include <zephyr/device.h>
|
||||
|
|
|
@ -16,7 +16,7 @@
|
|||
#include <zephyr/logging/log.h>
|
||||
LOG_MODULE_REGISTER(ws2812_spi);
|
||||
|
||||
#include <zephyr/zephyr.h>
|
||||
#include <zephyr/kernel.h>
|
||||
#include <zephyr/device.h>
|
||||
#include <zephyr/drivers/spi.h>
|
||||
#include <zephyr/sys/math_extras.h>
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
* SPDX-License-Identifier: Apache-2.0
|
||||
*/
|
||||
|
||||
#include <zephyr/zephyr.h>
|
||||
#include <zephyr/kernel.h>
|
||||
|
||||
#include <timer.h>
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
#include <zephyr/drivers/gpio.h>
|
||||
#include <zephyr/drivers/lora.h>
|
||||
#include <zephyr/drivers/spi.h>
|
||||
#include <zephyr/zephyr.h>
|
||||
#include <zephyr/kernel.h>
|
||||
|
||||
#include <sx126x/sx126x.h>
|
||||
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
*/
|
||||
|
||||
#include <zephyr/drivers/gpio.h>
|
||||
#include <zephyr/zephyr.h>
|
||||
#include <zephyr/kernel.h>
|
||||
|
||||
#include "sx126x_common.h"
|
||||
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
* SPDX-License-Identifier: Apache-2.0
|
||||
*/
|
||||
|
||||
#include <zephyr/zephyr.h>
|
||||
#include <zephyr/kernel.h>
|
||||
|
||||
#include "sx126x_common.h"
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
#include <zephyr/drivers/gpio.h>
|
||||
#include <zephyr/drivers/lora.h>
|
||||
#include <zephyr/drivers/spi.h>
|
||||
#include <zephyr/zephyr.h>
|
||||
#include <zephyr/kernel.h>
|
||||
|
||||
#include "sx12xx_common.h"
|
||||
|
||||
|
|
|
@ -9,7 +9,7 @@
|
|||
#include <zephyr/drivers/lora.h>
|
||||
#include <zephyr/logging/log.h>
|
||||
#include <zephyr/sys/atomic.h>
|
||||
#include <zephyr/zephyr.h>
|
||||
#include <zephyr/kernel.h>
|
||||
|
||||
/* LoRaMac-node specific includes */
|
||||
#include <radio.h>
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
|
||||
#include "ft8xx_drv.h"
|
||||
|
||||
#include <zephyr/zephyr.h>
|
||||
#include <zephyr/kernel.h>
|
||||
#include <zephyr/drivers/gpio.h>
|
||||
#include <zephyr/drivers/spi.h>
|
||||
#include <zephyr/logging/log.h>
|
||||
|
|
|
@ -16,7 +16,7 @@ LOG_MODULE_REGISTER(LOG_MODULE_NAME, CONFIG_MODEM_LOG_LEVEL);
|
|||
#include <stdlib.h>
|
||||
#include <ctype.h>
|
||||
#include <errno.h>
|
||||
#include <zephyr/zephyr.h>
|
||||
#include <zephyr/kernel.h>
|
||||
#include <zephyr/drivers/gpio.h>
|
||||
#include <zephyr/device.h>
|
||||
#include <zephyr/init.h>
|
||||
|
|
|
@ -12,7 +12,7 @@
|
|||
|
||||
#define LOG_MODULE_NAME modem_shell
|
||||
|
||||
#include <zephyr/zephyr.h>
|
||||
#include <zephyr/kernel.h>
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
#include <zephyr/device.h>
|
||||
|
|
|
@ -16,7 +16,7 @@ LOG_MODULE_REGISTER(LOG_DOMAIN);
|
|||
#include <stdlib.h>
|
||||
#include <ctype.h>
|
||||
#include <errno.h>
|
||||
#include <zephyr/zephyr.h>
|
||||
#include <zephyr/kernel.h>
|
||||
#include <zephyr/drivers/gpio.h>
|
||||
#include <zephyr/device.h>
|
||||
#include <zephyr/init.h>
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
*/
|
||||
|
||||
|
||||
#include <zephyr/zephyr.h>
|
||||
#include <zephyr/kernel.h>
|
||||
#include <zephyr/drivers/pwm.h>
|
||||
#include <zephyr/logging/log.h>
|
||||
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
* devices for the "vnd,pwm" devicetree compatible used in test code.
|
||||
*/
|
||||
|
||||
#include <zephyr/zephyr.h>
|
||||
#include <zephyr/kernel.h>
|
||||
#include <zephyr/drivers/pwm.h>
|
||||
|
||||
#define DT_DRV_COMPAT vnd_pwm
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
|
||||
#define DT_DRV_COMPAT nxp_imx_usdhc
|
||||
|
||||
#include <zephyr/zephyr.h>
|
||||
#include <zephyr/kernel.h>
|
||||
#include <zephyr/devicetree.h>
|
||||
#include <zephyr/drivers/sdhc.h>
|
||||
#include <zephyr/sd/sd_spec.h>
|
||||
|
|
|
@ -12,7 +12,7 @@
|
|||
#include <zephyr/sys/util.h>
|
||||
#include <zephyr/drivers/sensor.h>
|
||||
#include <string.h>
|
||||
#include <zephyr/zephyr.h>
|
||||
#include <zephyr/kernel.h>
|
||||
#include <zephyr/logging/log.h>
|
||||
|
||||
#include "dht.h"
|
||||
|
|
|
@ -11,7 +11,7 @@
|
|||
#include <zephyr/devicetree.h>
|
||||
#include <math.h>
|
||||
#include <zephyr/drivers/sensor.h>
|
||||
#include <zephyr/zephyr.h>
|
||||
#include <zephyr/kernel.h>
|
||||
#include <zephyr/logging/log.h>
|
||||
|
||||
LOG_MODULE_REGISTER(grove_light, CONFIG_SENSOR_LOG_LEVEL);
|
||||
|
|
|
@ -11,7 +11,7 @@
|
|||
#include <zephyr/devicetree.h>
|
||||
#include <math.h>
|
||||
#include <zephyr/drivers/sensor.h>
|
||||
#include <zephyr/zephyr.h>
|
||||
#include <zephyr/kernel.h>
|
||||
#include <zephyr/logging/log.h>
|
||||
|
||||
LOG_MODULE_REGISTER(grove_temp, CONFIG_SENSOR_LOG_LEVEL);
|
||||
|
|
|
@ -9,7 +9,7 @@
|
|||
* devices for the "vnd,serial" devicetree compatible used in test code.
|
||||
*/
|
||||
|
||||
#include <zephyr/zephyr.h>
|
||||
#include <zephyr/kernel.h>
|
||||
#include <zephyr/drivers/uart.h>
|
||||
|
||||
#define DT_DRV_COMPAT vnd_serial
|
||||
|
|
|
@ -9,7 +9,7 @@
|
|||
* @brief Async callback used with signal notifier
|
||||
*/
|
||||
|
||||
#include <zephyr/zephyr.h>
|
||||
#include <zephyr/kernel.h>
|
||||
#include <zephyr/device.h>
|
||||
|
||||
#ifdef CONFIG_POLL
|
||||
|
|
|
@ -9,7 +9,7 @@
|
|||
* devices for the "vnd,spi" devicetree compatible used in test code.
|
||||
*/
|
||||
|
||||
#include <zephyr/zephyr.h>
|
||||
#include <zephyr/kernel.h>
|
||||
#include <zephyr/drivers/spi.h>
|
||||
|
||||
#define DT_DRV_COMPAT vnd_spi
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
#define DT_DRV_COMPAT openisa_rv32m1_lptmr
|
||||
|
||||
#include <zephyr/device.h>
|
||||
#include <zephyr/zephyr.h>
|
||||
#include <zephyr/kernel.h>
|
||||
#include <zephyr/sys/util.h>
|
||||
#include <zephyr/drivers/timer/system_timer.h>
|
||||
#include <soc.h>
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
*/
|
||||
|
||||
#define DT_DRV_COMPAT aptina_mt9m114
|
||||
#include <zephyr/zephyr.h>
|
||||
#include <zephyr/kernel.h>
|
||||
#include <zephyr/device.h>
|
||||
|
||||
#include <zephyr/sys/byteorder.h>
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
*/
|
||||
|
||||
#define DT_DRV_COMPAT ovti_ov2640
|
||||
#include <zephyr/zephyr.h>
|
||||
#include <zephyr/kernel.h>
|
||||
#include <zephyr/device.h>
|
||||
|
||||
#include <zephyr/drivers/video.h>
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
*/
|
||||
|
||||
#define DT_DRV_COMPAT ovti_ov7725
|
||||
#include <zephyr/zephyr.h>
|
||||
#include <zephyr/kernel.h>
|
||||
#include <zephyr/device.h>
|
||||
|
||||
#include <zephyr/sys/byteorder.h>
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
*
|
||||
* SPDX-License-Identifier: Apache-2.0
|
||||
*/
|
||||
#include <zephyr/zephyr.h>
|
||||
#include <zephyr/kernel.h>
|
||||
|
||||
#include <zephyr/drivers/video.h>
|
||||
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
|
||||
#define DT_DRV_COMPAT nxp_imx_csi
|
||||
|
||||
#include <zephyr/zephyr.h>
|
||||
#include <zephyr/kernel.h>
|
||||
|
||||
#include <fsl_csi.h>
|
||||
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
*
|
||||
* SPDX-License-Identifier: Apache-2.0
|
||||
*/
|
||||
#include <zephyr/zephyr.h>
|
||||
#include <zephyr/kernel.h>
|
||||
|
||||
#include <zephyr/drivers/video.h>
|
||||
|
||||
|
|
|
@ -12,7 +12,7 @@
|
|||
#include <zephyr/drivers/w1.h>
|
||||
#include <zephyr/logging/log.h>
|
||||
#include <zephyr/pm/device.h>
|
||||
#include <zephyr/zephyr.h>
|
||||
#include <zephyr/kernel.h>
|
||||
|
||||
#define DT_DRV_COMPAT maxim_ds2484
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
#define ZEPHYR_DRIVERS_W1_W1_DS248X_H_
|
||||
|
||||
#include <zephyr/drivers/i2c.h>
|
||||
#include <zephyr/zephyr.h>
|
||||
#include <zephyr/kernel.h>
|
||||
|
||||
#define CMD_1WT 0x78
|
||||
#define CMD_1WSB 0x87
|
||||
|
|
|
@ -11,7 +11,7 @@ LOG_MODULE_DECLARE(LOG_MODULE_NAME);
|
|||
#include <limits.h>
|
||||
#include <fcntl.h>
|
||||
|
||||
#include <zephyr/zephyr.h>
|
||||
#include <zephyr/kernel.h>
|
||||
/* Define sockaddr, etc, before simplelink.h */
|
||||
#include <zephyr/net/socket_offload.h>
|
||||
|
||||
|
|
|
@ -11,7 +11,7 @@
|
|||
#include "simplelink_log.h"
|
||||
LOG_MODULE_DECLARE(LOG_MODULE_NAME);
|
||||
|
||||
#include <zephyr/zephyr.h>
|
||||
#include <zephyr/kernel.h>
|
||||
#include <stdint.h>
|
||||
|
||||
#include <ti/drivers/net/wifi/simplelink.h>
|
||||
|
|
|
@ -17,7 +17,7 @@
|
|||
* @{
|
||||
*/
|
||||
|
||||
#include <zephyr/zephyr.h>
|
||||
#include <zephyr/kernel.h>
|
||||
#include <zephyr/net/buf.h>
|
||||
|
||||
#ifdef __cplusplus
|
||||
|
|
|
@ -21,7 +21,7 @@
|
|||
|
||||
#include <zephyr/device.h>
|
||||
#include <stddef.h>
|
||||
#include <zephyr/zephyr.h>
|
||||
#include <zephyr/kernel.h>
|
||||
|
||||
#include <zephyr/types.h>
|
||||
|
||||
|
|
|
@ -21,7 +21,7 @@
|
|||
|
||||
#include <zephyr/device.h>
|
||||
#include <stddef.h>
|
||||
#include <zephyr/zephyr.h>
|
||||
#include <zephyr/kernel.h>
|
||||
|
||||
#include <zephyr/types.h>
|
||||
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
#ifndef _OSDP_H_
|
||||
#define _OSDP_H_
|
||||
|
||||
#include <zephyr/zephyr.h>
|
||||
#include <zephyr/kernel.h>
|
||||
#include <stdint.h>
|
||||
|
||||
#include <zephyr/sys/slist.h>
|
||||
|
|
|
@ -13,7 +13,7 @@
|
|||
#include <stddef.h>
|
||||
#include <zephyr/types.h>
|
||||
#include <zephyr/sys/util.h>
|
||||
#include <zephyr/zephyr.h>
|
||||
#include <zephyr/kernel.h>
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
|
|
|
@ -13,7 +13,7 @@
|
|||
#ifndef ZEPHYR_INCLUDE_NET_CAPTURE_H_
|
||||
#define ZEPHYR_INCLUDE_NET_CAPTURE_H_
|
||||
|
||||
#include <zephyr/zephyr.h>
|
||||
#include <zephyr/kernel.h>
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
|
|
|
@ -24,7 +24,7 @@
|
|||
|
||||
#include <stddef.h>
|
||||
|
||||
#include <zephyr/zephyr.h>
|
||||
#include <zephyr/kernel.h>
|
||||
#include <zephyr/types.h>
|
||||
#include <zephyr/net/tls_credentials.h>
|
||||
#include <zephyr/net/net_ip.h>
|
||||
|
|
|
@ -12,7 +12,7 @@
|
|||
#ifndef ZEPHYR_INCLUDE_NET_TFTP_H_
|
||||
#define ZEPHYR_INCLUDE_NET_TFTP_H_
|
||||
|
||||
#include <zephyr/zephyr.h>
|
||||
#include <zephyr/kernel.h>
|
||||
#include <zephyr/net/socket.h>
|
||||
|
||||
#ifdef __cplusplus
|
||||
|
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Reference in a new issue