2026-01-17 14:40:03 +01:00

23 lines
352 B
C

#pragma once
#ifdef __cplusplus
extern "C" {
#endif
#include <device.h>
#include <drivers/root.h>
// Inherit base config
#define tlora_pager_config root_config
// Inherit base API
#define tlora_pager_api root_api
int tlora_pager_init(const struct device* device);
int tlora_pager_deinit(const struct device* device);
#ifdef __cplusplus
}
#endif