mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-08-16 12:16:06 +00:00
Deprecate this header which provides API compatibility for the native_posix timer HW model, with planned removal in v4.4. Signed-off-by: Alberto Escolar Piedras <alberto.escolar.piedras@nordicsemi.no>
22 lines
567 B
C
22 lines
567 B
C
/*
|
|
* Copyright (c) 2023 Nordic Semiconductor ASA
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
#ifndef BOARDS_POSIX_NATIVE_SIM_TIMER_MODEL_H
|
|
#define BOARDS_POSIX_NATIVE_SIM_TIMER_MODEL_H
|
|
|
|
#warning "This transitional header is now deprecated and will be removed by v4.4. "\
|
|
"Use nsi_timer_model.h instead."
|
|
|
|
/*
|
|
* To support the native_posix timer driver
|
|
* we provide a header with the same name as in native_posix
|
|
*/
|
|
#include "nsi_hw_scheduler.h"
|
|
#include "nsi_timer_model.h"
|
|
#include "native_posix_compat.h"
|
|
|
|
#endif /* BOARDS_POSIX_NATIVE_SIM_TIMER_MODEL_H */
|