7ce305fca3
* C2OTA: wip * Update Cube to 1.13.3 * Fixed prio * Functional Core2 updater * Removed hardware CRC usage; code cleanup & linter fixes * Moved hardcoded stack params to copro.mk * Fixing CI bundling of core2 fw * Removed last traces of hardcoded radio stack * OB processing draft * Python scripts cleanup * Support for comments in ob data * Sacrificed SD card icon in favor of faster update. Waiting for Storage fix * Additional handling for OB mismatched values * Description for new furi_hal apis; spelling fixes * Rework of OB write, WIP * Properly restarting OB verification loop * Split update_task_workers.c * Checking OBs after enabling post-update mode * Moved OB verification before flashing * Removed ob.data for custom stacks * Fixed progress calculation for OB * Removed unnecessary OB mask cast Co-authored-by: Aleksandr Kutuzov <alleteam@gmail.com>
65 lines
1.3 KiB
C++
65 lines
1.3 KiB
C++
/**
|
|
* @file furi_hal.h
|
|
* Furi HAL API
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#ifdef __cplusplus
|
|
template <unsigned int N> struct STOP_EXTERNING_ME {};
|
|
#endif
|
|
|
|
#include "furi_hal_clock.h"
|
|
#include "furi_hal_crypto.h"
|
|
#include "furi_hal_console.h"
|
|
#include "furi_hal_os.h"
|
|
#include "furi_hal_sd.h"
|
|
#include "furi_hal_i2c.h"
|
|
#include "furi_hal_resources.h"
|
|
#include "furi_hal_rtc.h"
|
|
#include "furi_hal_speaker.h"
|
|
#include "furi_hal_gpio.h"
|
|
#include "furi_hal_light.h"
|
|
#include "furi_hal_delay.h"
|
|
#include "furi_hal_power.h"
|
|
#include "furi_hal_vcp.h"
|
|
#include "furi_hal_interrupt.h"
|
|
#include "furi_hal_version.h"
|
|
#include "furi_hal_bt.h"
|
|
#include "furi_hal_spi.h"
|
|
#include "furi_hal_flash.h"
|
|
#include "furi_hal_subghz.h"
|
|
#include "furi_hal_vibro.h"
|
|
#include "furi_hal_ibutton.h"
|
|
#include "furi_hal_rfid.h"
|
|
#include "furi_hal_nfc.h"
|
|
#include "furi_hal_usb.h"
|
|
#include "furi_hal_usb_hid.h"
|
|
#include "furi_hal_compress.h"
|
|
#include "furi_hal_uart.h"
|
|
#include "furi_hal_info.h"
|
|
#include "furi_hal_random.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
/** Early FuriHal init, only essential subsystems */
|
|
void furi_hal_init_early();
|
|
|
|
/** Early FuriHal deinit */
|
|
void furi_hal_deinit_early();
|
|
|
|
/** Init FuriHal */
|
|
void furi_hal_init();
|
|
|
|
/** Transfer execution to address
|
|
*
|
|
* @param[in] address pointer to new executable
|
|
*/
|
|
void furi_hal_switch(void* address);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|