mirror of
https://github.com/ByteWelder/Tactility.git
synced 2026-02-21 16:05:05 +00:00
23 lines
352 B
C
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
|