mirror of
https://github.com/DarkFlippers/unleashed-firmware
synced 2024-12-02 17:29:14 +00:00
917410a0a8
* fbt: reworking targets & assets handling WIP * fbt: dist fixes * fbt: moved SD card resources to owning apps * unit_tests: moved resources to app folder * github: updated unit_tests paths * github: packaging fixes * unit_tests: fixes * fbt: assets: internal cleanup * fbt: reworked assets handling * github: unit_tests: reintroducing fixes * minor cleanup * fbt: naming changes to reflect private nature of scons tools * fbt: resources: fixed dist archive paths * docs: updated paths * docs: updated more paths * docs: included "resources" parameter in app manifest docs; updated assets readme * updated gitignore for assets * github: updated action versions * unit_tests: restored timeout; scripts: assets: logging changes * gh: don't upload desktop animations for unit test run Co-authored-by: あく <alleteam@gmail.com>
67 lines
1.7 KiB
C
67 lines
1.7 KiB
C
#include <furi_hal.h>
|
|
#include <furi_hal_mpu.h>
|
|
#include <furi_hal_memory.h>
|
|
|
|
#include <stm32wbxx_ll_cortex.h>
|
|
|
|
#define TAG "FuriHal"
|
|
|
|
void furi_hal_init_early() {
|
|
furi_hal_cortex_init_early();
|
|
furi_hal_clock_init_early();
|
|
furi_hal_bus_init_early();
|
|
furi_hal_dma_init_early();
|
|
furi_hal_resources_init_early();
|
|
furi_hal_os_init();
|
|
furi_hal_spi_config_init_early();
|
|
furi_hal_i2c_init_early();
|
|
furi_hal_light_init();
|
|
furi_hal_rtc_init_early();
|
|
}
|
|
|
|
void furi_hal_deinit_early() {
|
|
furi_hal_rtc_deinit_early();
|
|
furi_hal_i2c_deinit_early();
|
|
furi_hal_spi_config_deinit_early();
|
|
furi_hal_resources_deinit_early();
|
|
furi_hal_dma_deinit_early();
|
|
furi_hal_bus_deinit_early();
|
|
furi_hal_clock_deinit_early();
|
|
}
|
|
|
|
void furi_hal_init() {
|
|
furi_hal_mpu_init();
|
|
furi_hal_clock_init();
|
|
furi_hal_random_init();
|
|
furi_hal_console_init();
|
|
furi_hal_rtc_init();
|
|
furi_hal_interrupt_init();
|
|
furi_hal_flash_init();
|
|
furi_hal_resources_init();
|
|
furi_hal_version_init();
|
|
furi_hal_spi_config_init();
|
|
furi_hal_spi_dma_init();
|
|
furi_hal_speaker_init();
|
|
furi_hal_crypto_init();
|
|
furi_hal_i2c_init();
|
|
furi_hal_power_init();
|
|
furi_hal_light_init();
|
|
furi_hal_bt_init();
|
|
furi_hal_memory_init();
|
|
|
|
#ifndef FURI_RAM_EXEC
|
|
furi_hal_usb_init();
|
|
furi_hal_vibro_init();
|
|
#endif
|
|
}
|
|
|
|
void furi_hal_switch(void* address) {
|
|
__set_BASEPRI(0);
|
|
asm volatile("ldr r3, [%0] \n"
|
|
"msr msp, r3 \n"
|
|
"ldr r3, [%1] \n"
|
|
"mov pc, r3 \n"
|
|
:
|
|
: "r"(address), "r"(address + 0x4)
|
|
: "r3");
|
|
}
|