2021-10-17 22:54:19 +00:00
|
|
|
#include "main.h"
|
|
|
|
|
|
|
|
#include <furi.h>
|
2022-01-05 16:10:18 +00:00
|
|
|
#include <furi_hal.h>
|
2021-10-17 22:54:19 +00:00
|
|
|
#include <flipper.h>
|
|
|
|
|
2021-11-12 13:04:35 +00:00
|
|
|
#define TAG "Main"
|
|
|
|
|
2021-10-17 22:54:19 +00:00
|
|
|
int main(void) {
|
|
|
|
// Initialize FURI layer
|
|
|
|
furi_init();
|
|
|
|
|
|
|
|
// Initialize ST HAL
|
|
|
|
HAL_Init();
|
|
|
|
|
|
|
|
// Flipper FURI HAL
|
|
|
|
furi_hal_init();
|
|
|
|
|
|
|
|
// CMSIS initialization
|
|
|
|
osKernelInitialize();
|
2021-11-12 13:04:35 +00:00
|
|
|
FURI_LOG_I(TAG, "KERNEL OK");
|
2021-10-17 22:54:19 +00:00
|
|
|
|
|
|
|
// Init flipper
|
|
|
|
flipper_init();
|
|
|
|
|
|
|
|
// Start kernel
|
|
|
|
osKernelStart();
|
|
|
|
|
2022-01-05 16:10:18 +00:00
|
|
|
while(1) {
|
|
|
|
}
|
2021-10-17 22:54:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void Error_Handler(void) {
|
2021-12-31 17:32:49 +00:00
|
|
|
furi_crash("ErrorHandler");
|
2021-10-17 22:54:19 +00:00
|
|
|
}
|
|
|
|
|
2022-01-05 16:10:18 +00:00
|
|
|
#ifdef USE_FULL_ASSERT
|
2021-10-17 22:54:19 +00:00
|
|
|
/**
|
|
|
|
* @brief Reports the name of the source file and the source line number
|
|
|
|
* where the assert_param error has occurred.
|
|
|
|
* @param file: pointer to the source file name
|
|
|
|
* @param line: assert_param error line source number
|
|
|
|
* @retval None
|
|
|
|
*/
|
2022-01-05 16:10:18 +00:00
|
|
|
void assert_failed(uint8_t* file, uint32_t line) {
|
2021-11-12 13:04:35 +00:00
|
|
|
furi_crash("HAL assert failed");
|
2021-10-17 22:54:19 +00:00
|
|
|
}
|
|
|
|
#endif /* USE_FULL_ASSERT */
|