2021-09-10 02:19:02 +00:00
|
|
|
#include <furi-hal.h>
|
|
|
|
|
|
|
|
#include <comp.h>
|
|
|
|
#include <rtc.h>
|
|
|
|
#include <tim.h>
|
|
|
|
#include <gpio.h>
|
|
|
|
|
2021-11-10 09:53:00 +00:00
|
|
|
#include <stm32wbxx_ll_cortex.h>
|
|
|
|
|
2021-11-12 13:04:35 +00:00
|
|
|
#include <fatfs.h>
|
|
|
|
|
|
|
|
#define TAG "FuriHal"
|
|
|
|
|
2021-09-10 02:19:02 +00:00
|
|
|
void furi_hal_init() {
|
|
|
|
furi_hal_clock_init();
|
|
|
|
furi_hal_console_init();
|
|
|
|
furi_hal_interrupt_init();
|
|
|
|
furi_hal_delay_init();
|
|
|
|
|
2021-12-05 11:47:02 +00:00
|
|
|
// FreeRTOS glue
|
|
|
|
furi_hal_os_init();
|
|
|
|
|
2021-09-10 02:19:02 +00:00
|
|
|
MX_GPIO_Init();
|
2021-11-12 13:04:35 +00:00
|
|
|
FURI_LOG_I(TAG, "GPIO OK");
|
2021-09-10 02:19:02 +00:00
|
|
|
|
|
|
|
MX_RTC_Init();
|
2021-11-12 13:04:35 +00:00
|
|
|
FURI_LOG_I(TAG, "RTC OK");
|
2021-10-26 12:24:14 +00:00
|
|
|
furi_hal_bootloader_init();
|
2021-09-10 02:19:02 +00:00
|
|
|
furi_hal_version_init();
|
|
|
|
|
|
|
|
furi_hal_spi_init();
|
|
|
|
|
|
|
|
MX_TIM1_Init();
|
2021-11-12 13:04:35 +00:00
|
|
|
FURI_LOG_I(TAG, "TIM1 OK");
|
2021-09-10 02:19:02 +00:00
|
|
|
MX_TIM2_Init();
|
2021-11-12 13:04:35 +00:00
|
|
|
FURI_LOG_I(TAG, "TIM2 OK");
|
2021-09-10 02:19:02 +00:00
|
|
|
MX_TIM16_Init();
|
2021-11-12 13:04:35 +00:00
|
|
|
FURI_LOG_I(TAG, "TIM16 OK");
|
2021-09-10 02:19:02 +00:00
|
|
|
MX_COMP1_Init();
|
2021-11-12 13:04:35 +00:00
|
|
|
FURI_LOG_I(TAG, "COMP1 OK");
|
2021-09-15 09:59:49 +00:00
|
|
|
|
|
|
|
furi_hal_crypto_init();
|
2021-09-10 02:19:02 +00:00
|
|
|
|
|
|
|
// VCP + USB
|
2021-10-06 09:24:09 +00:00
|
|
|
furi_hal_usb_init();
|
2021-11-21 15:17:43 +00:00
|
|
|
furi_hal_usb_set_config(&usb_cdc_single);
|
2021-10-21 18:12:20 +00:00
|
|
|
furi_hal_vcp_init();
|
2021-11-12 13:04:35 +00:00
|
|
|
FURI_LOG_I(TAG, "USB OK");
|
2021-09-10 02:19:02 +00: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 14:40:09 +00:00
|
|
|
furi_hal_bt_init();
|
2021-10-21 14:46:36 +00:00
|
|
|
furi_hal_compress_icon_init();
|
2021-09-10 02:19:02 +00:00
|
|
|
|
2021-11-12 13:04:35 +00:00
|
|
|
// FatFS driver initialization
|
|
|
|
MX_FATFS_Init();
|
|
|
|
FURI_LOG_I(TAG, "FATFS OK");
|
|
|
|
|
2021-11-10 09:53:00 +00:00
|
|
|
// Partial null pointer dereference protection
|
|
|
|
LL_MPU_Disable();
|
|
|
|
LL_MPU_ConfigRegion(
|
|
|
|
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
|
|
|
|
);
|
|
|
|
LL_MPU_Enable(LL_MPU_CTRL_PRIVILEGED_DEFAULT);
|
2021-09-10 02:19:02 +00:00
|
|
|
}
|