mirror of
https://github.com/Next-Flip/Momentum-Firmware.git
synced 2026-04-24 03:29:57 -07:00
* make infrared db unit tests * fix the tests, no assets are in asset folder oh no * fix formate * ship ir app along with unit_test pkg * libify ir signal and bruteforce parts * small cleanup * api: removed infrared methods (you can link with the lib if needed), unit_tests, infrared: adjusted to link with ir lib; api: added `__aeabi_f2d` --------- Co-authored-by: hedger <hedger@users.noreply.github.com> Co-authored-by: hedger <hedger@nanode.su>
14 lines
371 B
C
14 lines
371 B
C
/**
|
|
* @file infrared_app.h
|
|
* @brief Infrared application - start here.
|
|
*
|
|
* @see infrared_app_i.h for the main application data structure and functions.
|
|
* @see infrared_remote.h for the infrared remote library - loading, storing and manipulating remotes
|
|
*/
|
|
#pragma once
|
|
|
|
/**
|
|
* @brief InfraredApp opaque type declaration.
|
|
*/
|
|
typedef struct InfraredApp InfraredApp;
|