2021-08-08 18:03:25 +00:00
|
|
|
#include <furi-hal.h>
|
2021-05-18 09:23:14 +00:00
|
|
|
|
2021-07-20 17:14:42 +00:00
|
|
|
#include <aes.h>
|
|
|
|
#include <comp.h>
|
|
|
|
#include <pka.h>
|
|
|
|
#include <rf.h>
|
|
|
|
#include <rng.h>
|
|
|
|
#include <rtc.h>
|
|
|
|
#include <tim.h>
|
|
|
|
#include <usb_device.h>
|
|
|
|
#include <gpio.h>
|
|
|
|
|
2021-08-08 18:03:25 +00:00
|
|
|
void furi_hal_init() {
|
|
|
|
furi_hal_clock_init();
|
|
|
|
furi_hal_console_init();
|
|
|
|
furi_hal_interrupt_init();
|
|
|
|
furi_hal_delay_init();
|
2021-07-20 17:14:42 +00:00
|
|
|
|
|
|
|
MX_GPIO_Init();
|
|
|
|
FURI_LOG_I("HAL", "GPIO OK");
|
|
|
|
|
|
|
|
MX_RTC_Init();
|
|
|
|
FURI_LOG_I("HAL", "RTC OK");
|
2021-08-08 18:03:25 +00:00
|
|
|
furi_hal_boot_init();
|
|
|
|
furi_hal_version_init();
|
2021-07-20 17:14:42 +00:00
|
|
|
|
2021-08-08 18:03:25 +00:00
|
|
|
furi_hal_spi_init();
|
2021-07-20 17:14:42 +00:00
|
|
|
|
|
|
|
MX_TIM1_Init();
|
|
|
|
FURI_LOG_I("HAL", "TIM1 OK");
|
|
|
|
MX_TIM2_Init();
|
|
|
|
FURI_LOG_I("HAL", "TIM2 OK");
|
|
|
|
MX_TIM16_Init();
|
|
|
|
FURI_LOG_I("HAL", "TIM16 OK");
|
|
|
|
MX_COMP1_Init();
|
|
|
|
FURI_LOG_I("HAL", "COMP1 OK");
|
|
|
|
MX_RF_Init();
|
|
|
|
FURI_LOG_I("HAL", "RF OK");
|
|
|
|
MX_PKA_Init();
|
|
|
|
FURI_LOG_I("HAL", "PKA OK");
|
|
|
|
MX_RNG_Init();
|
|
|
|
FURI_LOG_I("HAL", "RNG OK");
|
|
|
|
MX_AES1_Init();
|
|
|
|
FURI_LOG_I("HAL", "AES1 OK");
|
|
|
|
MX_AES2_Init();
|
|
|
|
FURI_LOG_I("HAL", "AES2 OK");
|
|
|
|
|
|
|
|
// VCP + USB
|
2021-08-08 18:03:25 +00:00
|
|
|
furi_hal_vcp_init();
|
2021-07-20 17:14:42 +00:00
|
|
|
MX_USB_Device_Init();
|
|
|
|
FURI_LOG_I("HAL", "USB OK");
|
|
|
|
|
2021-08-08 18:03:25 +00:00
|
|
|
furi_hal_i2c_init();
|
2021-07-20 17:14:42 +00:00
|
|
|
|
|
|
|
// High Level
|
2021-08-08 18:03:25 +00:00
|
|
|
furi_hal_power_init();
|
|
|
|
furi_hal_light_init();
|
|
|
|
furi_hal_vibro_init();
|
|
|
|
furi_hal_subghz_init();
|
|
|
|
furi_hal_nfc_init();
|
2021-07-20 17:14:42 +00:00
|
|
|
|
|
|
|
// FreeRTOS glue
|
2021-08-08 18:03:25 +00:00
|
|
|
furi_hal_os_init();
|
2021-05-18 09:23:14 +00:00
|
|
|
}
|