2022-01-05 19:10:18 +03:00
|
|
|
#include <furi_hal.h>
|
2021-09-10 05:19:02 +03:00
|
|
|
|
|
|
|
#include <comp.h>
|
|
|
|
#include <tim.h>
|
|
|
|
#include <gpio.h>
|
|
|
|
|
2021-11-10 12:53:00 +03:00
|
|
|
#include <stm32wbxx_ll_cortex.h>
|
|
|
|
|
2021-11-12 16:04:35 +03:00
|
|
|
#include <fatfs.h>
|
|
|
|
|
|
|
|
#define TAG "FuriHal"
|
|
|
|
|
2021-09-10 05:19:02 +03:00
|
|
|
void furi_hal_init() {
|
2021-12-15 01:39:59 +03:00
|
|
|
furi_hal_rtc_init();
|
2021-09-10 05:19:02 +03:00
|
|
|
furi_hal_interrupt_init();
|
|
|
|
furi_hal_delay_init();
|
|
|
|
|
|
|
|
MX_GPIO_Init();
|
2021-11-12 16:04:35 +03:00
|
|
|
FURI_LOG_I(TAG, "GPIO OK");
|
2021-09-10 05:19:02 +03:00
|
|
|
|
2021-10-26 15:24:14 +03:00
|
|
|
furi_hal_bootloader_init();
|
2021-09-10 05:19:02 +03:00
|
|
|
furi_hal_version_init();
|
|
|
|
|
|
|
|
furi_hal_spi_init();
|
|
|
|
|
|
|
|
MX_TIM1_Init();
|
2021-11-12 16:04:35 +03:00
|
|
|
FURI_LOG_I(TAG, "TIM1 OK");
|
2021-09-10 05:19:02 +03:00
|
|
|
MX_TIM2_Init();
|
2021-11-12 16:04:35 +03:00
|
|
|
FURI_LOG_I(TAG, "TIM2 OK");
|
2021-09-10 05:19:02 +03:00
|
|
|
MX_TIM16_Init();
|
2021-11-12 16:04:35 +03:00
|
|
|
FURI_LOG_I(TAG, "TIM16 OK");
|
2021-09-10 05:19:02 +03:00
|
|
|
MX_COMP1_Init();
|
2021-11-12 16:04:35 +03:00
|
|
|
FURI_LOG_I(TAG, "COMP1 OK");
|
2021-09-15 12:59:49 +03:00
|
|
|
|
|
|
|
furi_hal_crypto_init();
|
2021-09-10 05:19:02 +03:00
|
|
|
|
|
|
|
// VCP + USB
|
2021-10-06 12:24:09 +03:00
|
|
|
furi_hal_usb_init();
|
2021-10-21 21:12:20 +03:00
|
|
|
furi_hal_vcp_init();
|
2021-11-12 16:04:35 +03:00
|
|
|
FURI_LOG_I(TAG, "USB OK");
|
2021-09-10 05:19:02 +03:00
|
|
|
|
|
|
|
furi_hal_i2c_init();
|
|
|
|
|
|
|
|
// High Level
|
|
|
|
furi_hal_power_init();
|
|
|
|
furi_hal_light_init();
|
|
|
|
furi_hal_vibro_init();
|
|
|
|
furi_hal_subghz_init();
|
|
|
|
furi_hal_nfc_init();
|
|
|
|
furi_hal_rfid_init();
|
2021-09-15 17:40:09 +03:00
|
|
|
furi_hal_bt_init();
|
2021-10-21 17:46:36 +03:00
|
|
|
furi_hal_compress_icon_init();
|
2021-09-10 05:19:02 +03:00
|
|
|
|
2021-12-15 01:39:59 +03:00
|
|
|
// FreeRTOS glue
|
|
|
|
furi_hal_os_init();
|
|
|
|
|
2021-11-12 16:04:35 +03:00
|
|
|
// FatFS driver initialization
|
|
|
|
MX_FATFS_Init();
|
|
|
|
FURI_LOG_I(TAG, "FATFS OK");
|
|
|
|
|
2021-11-10 12:53:00 +03:00
|
|
|
// Partial null pointer dereference protection
|
|
|
|
LL_MPU_Disable();
|
|
|
|
LL_MPU_ConfigRegion(
|
2022-01-05 19:10:18 +03:00
|
|
|
LL_MPU_REGION_NUMBER0,
|
|
|
|
0x00,
|
|
|
|
0x0,
|
|
|
|
LL_MPU_REGION_SIZE_1MB | LL_MPU_REGION_PRIV_RO_URO | LL_MPU_ACCESS_BUFFERABLE |
|
|
|
|
LL_MPU_ACCESS_CACHEABLE | LL_MPU_ACCESS_SHAREABLE | LL_MPU_TEX_LEVEL1 |
|
|
|
|
LL_MPU_INSTRUCTION_ACCESS_ENABLE);
|
2021-11-10 12:53:00 +03:00
|
|
|
LL_MPU_Enable(LL_MPU_CTRL_PRIVILEGED_DEFAULT);
|
2021-09-10 05:19:02 +03:00
|
|
|
}
|
2022-02-18 22:53:46 +03:00
|
|
|
|
|
|
|
void furi_hal_init_critical() {
|
|
|
|
furi_hal_clock_init();
|
|
|
|
furi_hal_console_init();
|
|
|
|
}
|