Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion include/zephyr/modbus/modbus.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*

Check warning on line 1 in include/zephyr/modbus/modbus.h

View workflow job for this annotation

GitHub Actions / Run compliance checks on patch series (PR)

License may not be allowed

include/zephyr/modbus/modbus.h:1 License file for 'APACHE-2.0' not found in /LICENSES. Please check https://docs.zephyrproject.org/latest/contribute/guidelines.html#components-using-other-licenses.

Check warning on line 1 in include/zephyr/modbus/modbus.h

View workflow job for this annotation

GitHub Actions / Run compliance checks on patch series (PR)

License may not be allowed

include/zephyr/modbus/modbus.h:1 License file for 'APACHE-2.0' not found in /LICENSES. Please check https://docs.zephyrproject.org/latest/contribute/guidelines.html#components-using-other-licenses.
* Copyright (c) 2020 PHYTEC Messtechnik GmbH
* Copyright (c) 2021 Nordic Semiconductor ASA
*
Expand Down Expand Up @@ -447,7 +447,7 @@
uint8_t fc;
uint8_t excep_code;
};
/** @endcond INTERNAL_HIDDEN */
/** INTERNAL_HIDDEN @endcond */

/**
* @brief Helper macro for initializing custom function code structs
Expand Down
2 changes: 1 addition & 1 deletion include/zephyr/pmci/mctp/mctp_i2c_gpio_common.h
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,6 @@
/* Max packet size (pseudo registers are byte sized) */
#define MCTP_I2C_GPIO_MAX_PKT_SIZE 255

/** @endcond INTERNAL_HIDDEN */
/** INTERNAL_HIDDEN @endcond */

#endif /* ZEPHYR_MCTP_I2C_GPIO_COMMON_H_ */
7 changes: 3 additions & 4 deletions include/zephyr/pmci/mctp/mctp_i2c_gpio_controller.h
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,7 @@ struct mctp_i2c_gpio_controller_cb {
uint8_t index;
};

/** @endcond INTERNAL_HIDDEN */

/** INTERNAL_HIDDEN @endcond */

/**
* @brief An MCTP binding for Zephyr's I2C interface using GPIO
Expand Down Expand Up @@ -65,7 +64,7 @@ struct mctp_binding_i2c_gpio_controller {
struct mpsc rx_q;
struct mctp_i2c_gpio_controller_cb *inflight_rx;

/** @endcond INTERNAL_HIDDEN */
/** INTERNAL_HIDDEN @endcond */
};

/** @cond INTERNAL_HIDDEN */
Expand Down Expand Up @@ -101,7 +100,7 @@ int mctp_i2c_gpio_controller_tx(struct mctp_binding *binding, struct mctp_pktbuf
(,), _name) \
}

/** @endcond INTERNAL_HIDDEN */
/** INTERNAL_HIDDEN @endcond */

/**
* @brief Define a MCTP bus binding for I2C controller with GPIO
Expand Down
4 changes: 2 additions & 2 deletions include/zephyr/pmci/mctp/mctp_i2c_gpio_target.h
Original file line number Diff line number Diff line change
Expand Up @@ -34,14 +34,14 @@ struct mctp_binding_i2c_gpio_target {
struct k_sem *tx_complete;
uint8_t tx_idx;
struct mctp_pktbuf *tx_pkt;
/** @endcond INTERNAL_HIDDEN */
/** INTERNAL_HIDDEN @endcond */
};

/** @cond INTERNAL_HIDDEN */
extern const struct i2c_target_callbacks mctp_i2c_gpio_target_callbacks;
int mctp_i2c_gpio_target_start(struct mctp_binding *binding);
int mctp_i2c_gpio_target_tx(struct mctp_binding *binding, struct mctp_pktbuf *pkt);
/** @endcond INTERNAL_HIDDEN */
/** INTERNAL_HIDDEN @endcond */

/**
* @brief Define a MCTP bus binding for I2C target with GPIO
Expand Down
4 changes: 2 additions & 2 deletions include/zephyr/pmci/mctp/mctp_uart.h
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ struct mctp_binding_uart {
uint8_t tx_buf[256];
int tx_res;

/** @endcond INTERNAL_HIDDEN */
/** INTERNAL_HIDDEN @endcond */
};

/**
Expand All @@ -59,7 +59,7 @@ void mctp_uart_start_rx(struct mctp_binding_uart *uart);
/** @cond INTERNAL_HIDDEN */
int mctp_uart_start(struct mctp_binding *binding);
int mctp_uart_tx(struct mctp_binding *binding, struct mctp_pktbuf *pkt);
/** @endcond INTERNAL_HIDDEN */
/** INTERNAL_HIDDEN @endcond */

/**
* @brief Statically define a MCTP bus binding for a UART
Expand Down
2 changes: 1 addition & 1 deletion include/zephyr/sys/clock.h
Original file line number Diff line number Diff line change
Expand Up @@ -387,7 +387,7 @@ struct timespec;

/* Convert a POSIX clock (cast to int) to a sys_clock identifier */
int sys_clock_from_clockid(int clock_id);
/** @endcond INTERNAL_HIDDEN */
/** INTERNAL_HIDDEN @endcond */

/**
* @brief Get the offset @ref SYS_CLOCK_REALTIME with respect to @ref SYS_CLOCK_MONOTONIC
Expand Down
Loading