Files
libretiny/cores/common/base/lt_api.h
Péter Sárközi 93e0a5d066 [beken-72xx] Implement deep sleep (#140)
* Initial support code for Deep Sleep

* Global functions

* Remove unnecessary override

* clang-format

* Support for multiple pins

* Fix math

* Add a way to unset GPIOs

* Clang format

* Update brief

---------

Co-authored-by: Kuba Szczodrzyński <kuba@szczodrzynski.pl>
2023-07-13 18:00:14 +02:00

26 lines
561 B
C

/* Copyright (c) Kuba Szczodrzyński 2023-03-09. */
#pragma once
// This file collects all LibreTiny C API includes.
// The functions are implemented in api/*.c units, which are located
// in the common core, and in the family cores.
#ifdef __cplusplus
extern "C" {
#endif // __cplusplus
#include "api/lt_cpu.h"
#include "api/lt_device.h"
#include "api/lt_flash.h"
#include "api/lt_init.h"
#include "api/lt_mem.h"
#include "api/lt_ota.h"
#include "api/lt_sleep.h"
#include "api/lt_utils.h"
#include "api/lt_wdt.h"
#ifdef __cplusplus
} // extern "C"
#endif