851a44dc59
* Gui: input injection in screen stream * Cli: expose ASCII table in public header * SubGhz: dma output draft * SubGhz: output initialization cleanup * SubGhz: update dma send routine, add subghz_tx cli command. * SubGhz: proper register address for DMA * SubGhz: proper, fully working dma+tim2 configuration * SubGhz: transmit PT with cli. * Drivers: fix invalid size in CC1101 PA_TABLE loading routine. * Interrupts: configurable DMA isrs. * F5: backport fixes. * SubGhz: free buffer after use * SubGhz: use sleep instead of reset at the end * SubGhz: async tx repeat with circular DMA * SubGhz: disable dma channel on complete, adjust PT send timings * SubGhz: backport function singature change to F5 * SubGhz: add tx debug gpio
32 lines
725 B
C++
32 lines
725 B
C++
#pragma once
|
|
|
|
#ifdef __cplusplus
|
|
template <unsigned int N> struct STOP_EXTERNING_ME {};
|
|
#endif
|
|
|
|
#include "api-hal-boot.h"
|
|
#include "api-hal-clock.h"
|
|
#include "api-hal-os.h"
|
|
#include "api-hal-i2c.h"
|
|
#include "api-hal-resources.h"
|
|
#include "api-hal-gpio.h"
|
|
#include "api-hal-light.h"
|
|
#include "api-hal-delay.h"
|
|
#include "api-hal-pwm.h"
|
|
#include "api-hal-task.h"
|
|
#include "api-hal-power.h"
|
|
#include "api-hal-vcp.h"
|
|
#include "api-hal-interrupt.h"
|
|
#include "api-hal-version.h"
|
|
#include "api-hal-bt.h"
|
|
#include "api-hal-spi.h"
|
|
#include "api-hal-flash.h"
|
|
#include "api-hal-subghz.h"
|
|
#include "api-hal-vibro.h"
|
|
#include "api-hal-ibutton.h"
|
|
#include "api-hal-rfid.h"
|
|
#include "api-hal-nfc.h"
|
|
|
|
/** Init api-hal */
|
|
void api_hal_init();
|